Skip to content
Snippets Groups Projects
Commit 59f2bef1 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix test where we changed arguments used to call the notifier

parent 1ca51c85
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ class FederationTestCase(unittest.TestCase): ...@@ -77,7 +77,7 @@ class FederationTestCase(unittest.TestCase):
self.datastore.persist_event.assert_called_once_with( self.datastore.persist_event.assert_called_once_with(
ANY, False, is_new_state=False ANY, False, is_new_state=False
) )
self.notifier.on_new_room_event.assert_called_once_with(ANY) self.notifier.on_new_room_event.assert_called_once_with(ANY, extra_users=[])
@defer.inlineCallbacks @defer.inlineCallbacks
def test_invite_join_target_this(self): def test_invite_join_target_this(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment