Fix user representation after following.
This commit is contained in:
parent
b5e94bf930
commit
15655d992e
2 changed files with 3 additions and 3 deletions
|
|
@ -127,7 +127,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
|
|||
|
||||
current_user = Repo.get(User, current_user.id)
|
||||
assert current_user.following == [User.ap_followers(followed)]
|
||||
assert json_response(conn, 200) == UserRepresenter.to_map(followed)
|
||||
assert json_response(conn, 200) == UserRepresenter.to_map(followed, %{for: current_user})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -150,7 +150,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
|
|||
|
||||
current_user = Repo.get(User, current_user.id)
|
||||
assert current_user.following == []
|
||||
assert json_response(conn, 200) == UserRepresenter.to_map(followed)
|
||||
assert json_response(conn, 200) == UserRepresenter.to_map(followed, %{for: current_user})
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue