summary refs log tree commit diff
path: root/tests/test_state.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-08-05 15:06:51 +0100
committerErik Johnston <erik@matrix.org>2015-08-05 15:11:42 +0100
commit07507643cb6a2fde1a87d229f8d77525627a0632 (patch)
tree0f776b47e8987cbfaad3be0170601b72e7f9e79c /tests/test_state.py
parentMove DictionaryCache (diff)
downloadsynapse-07507643cb6a2fde1a87d229f8d77525627a0632.tar.xz
Use dictionary cache to do group -> state fetching
Diffstat (limited to 'tests/test_state.py')
-rw-r--r--tests/test_state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_state.py b/tests/test_state.py
index fea25f7021..5845358754 100644
--- a/tests/test_state.py
+++ b/tests/test_state.py
@@ -69,7 +69,7 @@ class StateGroupStore(object):
 
         self._next_group = 1
 
-    def get_state_groups(self, event_ids):
+    def get_state_groups(self, room_id, event_ids):
         groups = {}
         for event_id in event_ids:
             group = self._event_to_state_group.get(event_id)