ConversationControllerTest: fix test, fix formatting

This commit is contained in:
Alibek Omarov 2020-10-30 13:10:19 +01:00 committed by Gitea
parent 5591dc0248
commit 0552a08dfd
1 changed files with 4 additions and 1 deletions

View File

@ -75,14 +75,17 @@ test "special behaviour when conversation have only one user", %{
res_conn = get(conn, "/api/v1/conversations")
assert response = json_response_and_validate_schema(res_conn, 200)
assert [
%{
"accounts" => res_accounts,
"last_status" => res_last_status
}
] = response
account_ids = Enum.map(res_accounts, & &1["id"])
assert length(res_accounts) == 1
assert res_accounts[0]["id"] == user_one.id
assert user_one.id in account_ids
end
test "observes limit params", %{