diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-27 17:21:38 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-27 17:21:48 +0100 |
commit | e111a06e0a677fb3c8a7d7259a152fe2c6267975 (patch) | |
tree | c22865ec522e63a308c61d354187651ffb02fdea /tests/handlers/test_federation.py | |
parent | If timeout=0, return immediately (diff) | |
download | synapse-e111a06e0a677fb3c8a7d7259a152fe2c6267975.tar.xz |
Fix tests.
Diffstat (limited to 'tests/handlers/test_federation.py')
-rw-r--r-- | tests/handlers/test_federation.py | 3 |
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): |