summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-02-14 03:40:33 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-02-14 03:40:33 +0000
commit6652389e80b736fb64a8d08e2e5f50eb4de9c54b (patch)
tree7e3f3acecc8378500472746cf17505a093df345c /test
parentbc9e5e6b65abb9c7280c1e6a5c521bdeeba761f8 (diff)
parente031cc6473e12cae7249324fe6fdea5287b6304a (diff)
downloadpleroma-6652389e80b736fb64a8d08e2e5f50eb4de9c54b.tar.gz
pleroma-6652389e80b736fb64a8d08e2e5f50eb4de9c54b.zip
Merge branch 'bugfix/activitypub-totalitems-removal' into 'develop'
activitypub: user inbox/outbox: `totalItems` removal See merge request pleroma/pleroma!827
Diffstat (limited to 'test')
-rw-r--r--test/web/activity_pub/activity_pub_controller_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/activity_pub/activity_pub_controller_test.exs b/test/web/activity_pub/activity_pub_controller_test.exs
index 570bee6b3..9f6d87caa 100644
--- a/test/web/activity_pub/activity_pub_controller_test.exs
+++ b/test/web/activity_pub/activity_pub_controller_test.exs
@@ -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