forked from mirrors/akkoma
Fix a race condition in tests
This commit is contained in:
parent
2990c0a53b
commit
ca88e37a8f
1 changed files with 1 additions and 1 deletions
|
@ -752,7 +752,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
|
||||||
query_string = "ids[]=#{id1}&ids[]=#{id2}"
|
query_string = "ids[]=#{id1}&ids[]=#{id2}"
|
||||||
conn = get(conn, "/api/v1/statuses/?#{query_string}")
|
conn = get(conn, "/api/v1/statuses/?#{query_string}")
|
||||||
|
|
||||||
assert [%{"id" => ^id1}, %{"id" => ^id2}] = json_response(conn, :ok)
|
assert [%{"id" => ^id1}, %{"id" => ^id2}] = Enum.sort_by(json_response(conn, :ok), & &1["id"])
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "deleting a status" do
|
describe "deleting a status" do
|
||||||
|
|
Loading…
Reference in a new issue