summary refs log tree commit diff
path: root/tests/handlers/test_federation.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-27 17:21:38 +0100
committerErik Johnston <erik@matrix.org>2014-08-27 17:21:48 +0100
commite111a06e0a677fb3c8a7d7259a152fe2c6267975 (patch)
treec22865ec522e63a308c61d354187651ffb02fdea /tests/handlers/test_federation.py
parentIf timeout=0, return immediately (diff)
downloadsynapse-e111a06e0a677fb3c8a7d7259a152fe2c6267975.tar.xz
Fix tests.
Diffstat (limited to 'tests/handlers/test_federation.py')
-rw-r--r--tests/handlers/test_federation.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/handlers/test_federation.py b/tests/handlers/test_federation.py
index a92d825f49..7f7e2b63a0 100644
--- a/tests/handlers/test_federation.py
+++ b/tests/handlers/test_federation.py
@@ -74,8 +74,7 @@ class FederationTestCase(unittest.TestCase):
         yield self.handlers.federation_handler.on_receive(event, False, False)
 
         self.datastore.persist_event.assert_called_once_with(event, False)
-        self.notifier.on_new_room_event.assert_called_once_with(
-                event, store_id)
+        self.notifier.on_new_room_event.assert_called_once_with(event)
 
     @defer.inlineCallbacks
     def test_invite_join_target_this(self):