logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 0552a08dfd4daeca69abca0274bbd6db018e5edb
parent 5591dc02486c30e4b80061706f7368d4b788b431
Author: Alibek Omarov <a1ba.omarov@gmail.com>
Date:   Fri, 30 Oct 2020 13:10:19 +0100

ConversationControllerTest: fix test, fix formatting

Diffstat:

Mtest/pleroma/web/mastodon_api/controllers/conversation_controller_test.exs5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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", %{