Skip to content
Snippets Groups Projects
Commit 27aa136a authored by lain's avatar lain
Browse files

Format.

parent 7b170cd6
Branches
No related tags found
No related merge requests found
......@@ -248,7 +248,6 @@ defmodule Pleroma.Web.Router do
)
get("/statuses/networkpublic_timeline", TwitterAPI.Controller, :public_and_external_timeline)
end
scope "/api", Pleroma.Web, as: :twitter_api_search do
......
......@@ -1218,12 +1218,13 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
user_two = insert(:user, %{name: "ean"})
user_three = insert(:user, %{name: "ebn"})
resp = conn
|> get(twitter_api_search__path(conn, :search_user), query: "eal")
|> json_response(200)
resp =
conn
|> get(twitter_api_search__path(conn, :search_user), query: "eal")
|> json_response(200)
assert length(resp) == 3
assert [user.id, user_two.id, user_three.id] == Enum.map(resp, fn (%{"id" => id}) -> id end)
assert [user.id, user_two.id, user_three.id] == Enum.map(resp, fn %{"id" => id} -> id end)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment