From 9be2f00064c0242c055432f36d1222548f291af0 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 26 Jan 2023 07:19:53 -0800 Subject: [PATCH] Update test_signing.py --- bookwyrm/tests/test_signing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/tests/test_signing.py b/bookwyrm/tests/test_signing.py index 9c5098018..8a7f65249 100644 --- a/bookwyrm/tests/test_signing.py +++ b/bookwyrm/tests/test_signing.py @@ -89,6 +89,7 @@ class Signature(TestCase): signature = make_signature( "post", signer or sender, self.rat.inbox, now, digest ) + with patch("bookwyrm.views.inbox.activity_task.apply_async"): with patch("bookwyrm.models.user.set_remote_server.delay"): return self.send(signature, now, send_data or data, digest)