diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-05 11:10:36 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-05 11:10:36 +0000 |
commit | 9e429239ab0c304cce4d2f076be5b30691fd93a7 (patch) | |
tree | 306959105537c29234af42f032b24096268da994 /tests | |
parent | Fix auth checks to all use the given old_event_state (diff) | |
download | synapse-9e429239ab0c304cce4d2f076be5b30691fd93a7.tar.xz |
Fix Federation test
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 63a9990f7a..a9d6b2bb17 100644 --- a/tests/handlers/test_federation.py +++ b/tests/handlers/test_federation.py @@ -100,7 +100,7 @@ class FederationTestCase(unittest.TestCase): old_state=None, ) - self.auth.check.assert_called_once_with(ANY, None, raises=True) + self.auth.check.assert_called_once_with(ANY, raises=True) self.notifier.on_new_room_event.assert_called_once_with( ANY, |