diff options
| author | Maxim Filippov <colixer@gmail.com> | 2019-10-15 17:33:29 +0200 |
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2019-10-15 17:33:29 +0200 |
| commit | da0e4879bcd12849182a39445174384420fcf064 (patch) | |
| tree | bf54d1b4ee868b187a66948993babe86350840c2 /test/web/mastodon_api/controllers/search_controller_test.exs | |
| parent | c0aca32dd0aed522cfc537cc88b77f7ff254946b (diff) | |
| parent | 3b1bc079af8fb6e467a9114de0d32e2de59a7fab (diff) | |
| download | pleroma-da0e4879bcd12849182a39445174384420fcf064.tar.gz pleroma-da0e4879bcd12849182a39445174384420fcf064.zip | |
DELETE /api/pleroma/admin/users now accepts nicknames array
Diffstat (limited to 'test/web/mastodon_api/controllers/search_controller_test.exs')
| -rw-r--r-- | test/web/mastodon_api/controllers/search_controller_test.exs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/web/mastodon_api/controllers/search_controller_test.exs b/test/web/mastodon_api/controllers/search_controller_test.exs index 0ca896e01..ee413eef7 100644 --- a/test/web/mastodon_api/controllers/search_controller_test.exs +++ b/test/web/mastodon_api/controllers/search_controller_test.exs @@ -40,9 +40,9 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do test "search", %{conn: conn} do user = insert(:user) user_two = insert(:user, %{nickname: "shp@shitposter.club"}) - user_three = insert(:user, %{nickname: "shp@heldscal.la", name: "I love 2hu 天子"}) + user_three = insert(:user, %{nickname: "shp@heldscal.la", name: "I love 2hu"}) - {:ok, activity} = CommonAPI.post(user, %{"status" => "This is about 2hu private"}) + {:ok, activity} = CommonAPI.post(user, %{"status" => "This is about 2hu private 天子"}) {:ok, _activity} = CommonAPI.post(user, %{ @@ -70,8 +70,8 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do get(conn, "/api/v2/search", %{"q" => "天子"}) |> json_response(200) - [account] == results["accounts"] - assert account["id"] == to_string(user_three.id) + [status] = results["statuses"] + assert status["id"] == to_string(activity.id) end end |
