From 7ff654720c58b0cecbeb7367a9363acd4bd0d3b2 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 16 Dec 2022 14:45:32 -0800 Subject: [PATCH] updates tests --- bookwyrm/tests/views/inbox/test_inbox_create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/tests/views/inbox/test_inbox_create.py b/bookwyrm/tests/views/inbox/test_inbox_create.py index e61b9313a..f0fb84edf 100644 --- a/bookwyrm/tests/views/inbox/test_inbox_create.py +++ b/bookwyrm/tests/views/inbox/test_inbox_create.py @@ -63,7 +63,7 @@ class TransactionInboxCreate(TransactionTestCase): with patch("bookwyrm.activitystreams.add_status_task.apply_async") as mock: views.inbox.activity_task(activity) - self.assertEqual(mock.call_count, 2) + self.assertEqual(mock.call_count, 0) @patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async")