From 0a31558dc8bb7bc1a3c45e57779896292000b63e Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Thu, 27 Jun 2024 13:23:08 -0700 Subject: [PATCH] fix tests for b87b4aa --- tests/test_protocol.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_protocol.py b/tests/test_protocol.py index 870b42c..df46f59 100644 --- a/tests/test_protocol.py +++ b/tests/test_protocol.py @@ -1235,8 +1235,9 @@ class ProtocolReceiveTest(TestCase): our_as1=reply_as1, copies=[copy], feed=[eve.key]) - self.assertEqual([('fake:reply#bridgy-fed-create', 'other:eve:target')], - OtherFake.sent) + self.assertEqual([('fake:reply#bridgy-fed-create', 'other:eve:target'), + ('fake:reply#bridgy-fed-create', 'other:post:target'), + ], OtherFake.sent) def test_update_reply(self): eve = self.make_user('other:eve', cls=OtherFake, obj_id='other:eve')