diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-26 10:45:37 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-26 10:45:37 +0000 |
commit | 822b15ea439aca992af053c00fcdf9c6284c724a (patch) | |
tree | e71bd82e4c9b773ca6623d4b6a8d93cad1c27ffa /tests | |
parent | Correctly handle the case where we get an event for an unknown room, which tu... (diff) | |
download | synapse-822b15ea439aca992af053c00fcdf9c6284c724a.tar.xz |
Fix tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/handlers/test_federation.py b/tests/handlers/test_federation.py index 548bae7a8d..98cfbe50b3 100644 --- a/tests/handlers/test_federation.py +++ b/tests/handlers/test_federation.py @@ -98,7 +98,7 @@ class FederationTestCase(unittest.TestCase): yield self.handlers.federation_handler.on_receive_pdu(pdu, False) self.datastore.persist_event.assert_called_once_with( - ANY, is_new_state=False, backfilled=False + ANY, is_new_state=False, backfilled=False, current_state=None ) self.state_handler.annotate_event_with_state.assert_called_once_with( |