From 81925b11cf39a356b58bde5bde511e0cf2f51d81 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 27 Mar 2021 10:38:07 -0700 Subject: [PATCH] Removes duplicate patch annotation --- bookwyrm/tests/views/test_helpers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bookwyrm/tests/views/test_helpers.py b/bookwyrm/tests/views/test_helpers.py index f77ccbf5c..7d6df948e 100644 --- a/bookwyrm/tests/views/test_helpers.py +++ b/bookwyrm/tests/views/test_helpers.py @@ -161,7 +161,6 @@ class ViewsHelpers(TestCase): self.assertEqual(status.mention_books.first(), self.book) self.assertEqual(status.content, "started reading") - @patch("bookwyrm.activitystreams.ActivityStream.add_status") def test_handle_reading_status_read(self, _): """ posts shelve activities """ shelf = self.local_user.shelf_set.get(identifier="read") @@ -174,7 +173,6 @@ class ViewsHelpers(TestCase): self.assertEqual(status.mention_books.first(), self.book) self.assertEqual(status.content, "finished reading") - @patch("bookwyrm.activitystreams.ActivityStream.add_status") def test_handle_reading_status_other(self, _): """ posts shelve activities """ with patch("bookwyrm.models.activitypub_mixin.broadcast_task.delay"):