From: William Pitcock Date: Thu, 14 Feb 2019 03:22:54 +0000 (+0000) Subject: tests: update tests for totalItems leak fix X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=e031cc6473e12cae7249324fe6fdea5287b6304a;hp=--cc;p=akkoma tests: update tests for totalItems leak fix --- e031cc6473e12cae7249324fe6fdea5287b6304a 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