mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-10 17:25:35 +00:00
Removes duplicate patch annotation
This commit is contained in:
parent
c398d8a870
commit
81925b11cf
1 changed files with 0 additions and 2 deletions
|
@ -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"):
|
||||
|
|
Loading…
Reference in a new issue