1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-26 08:35:17 +01:00

tests: update tests for totalItems leak fix

This commit is contained in:
William Pitcock 2019-02-14 03:22:54 +00:00
parent 72ba5b4ab7
commit e031cc6473

View File

@ -397,7 +397,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
|> json_response(200)
assert result["first"]["orderedItems"] == []
assert result["totalItems"] == 1
assert result["totalItems"] == 0
end
test "it works for more than 10 users", %{conn: conn} do
@ -452,7 +452,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
|> json_response(200)
assert result["first"]["orderedItems"] == []
assert result["totalItems"] == 1
assert result["totalItems"] == 0
end
test "it works for more than 10 users", %{conn: conn} do