diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/test/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs b/test/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs index 8d07cff3f..291b6b295 100644 --- a/test/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs +++ b/test/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs @@ -75,14 +75,17 @@ defmodule Pleroma.Web.MastodonAPI.ConversationControllerTest do        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", %{ | 
