diff options
author | Erik Johnston <erik@matrix.org> | 2015-03-16 15:15:14 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-03-16 15:15:14 +0000 |
commit | 6df319b6f07f2acce0c1b9aa19fd9f6005aee4ac (patch) | |
tree | b740a993f358aab6982099f23af75c25bc57070a | |
parent | Copy dict of context.current_state before changing it. (diff) | |
download | synapse-6df319b6f07f2acce0c1b9aa19fd9f6005aee4ac.tar.xz |
Fix tests
-rw-r--r-- | tests/handlers/test_room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/handlers/test_room.py b/tests/handlers/test_room.py index 0da7eb877a..6417f73309 100644 --- a/tests/handlers/test_room.py +++ b/tests/handlers/test_room.py @@ -219,7 +219,7 @@ class RoomMemberHandlerTestCase(unittest.TestCase): yield room_handler.change_membership(event, context) self.federation.handle_new_event.assert_called_once_with( - event, destinations=set(['red']) + event, destinations=set() ) self.datastore.persist_event.assert_called_once_with( |