mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-26 00:48:19 +00:00
Fixes mock arg on test
This commit is contained in:
parent
82ad1abe9a
commit
b717c2fcd8
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class ActivitystreamsSignals(TestCase):
|
||||||
args = mock.call_args[0]
|
args = mock.call_args[0]
|
||||||
self.assertEqual(args[0], status.id)
|
self.assertEqual(args[0], status.id)
|
||||||
|
|
||||||
def test_populate_streams_on_account_create(self):
|
def test_populate_streams_on_account_create(self, _):
|
||||||
"""create streams for a user"""
|
"""create streams for a user"""
|
||||||
with patch("bookwyrm.activitystreams.populate_stream_task") as mock:
|
with patch("bookwyrm.activitystreams.populate_stream_task") as mock:
|
||||||
activitystreams.populate_streams_on_account_create(
|
activitystreams.populate_streams_on_account_create(
|
||||||
|
|
Loading…
Reference in a new issue