diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-25 17:32:22 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-25 17:32:22 +0100 |
commit | a3dc1e9cbe491aa981b8bbaeb2414b4ec8e5b9ca (patch) | |
tree | d7414c7b98aac2aeb1486285cb2774c2273fba1e /tests/replication | |
parent | Pull out event ids rather than full events for state (diff) | |
download | synapse-a3dc1e9cbe491aa981b8bbaeb2414b4ec8e5b9ca.tar.xz |
Replace context.current_state with context.current_state_ids
Diffstat (limited to 'tests/replication')
-rw-r--r-- | tests/replication/slave/storage/test_events.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/replication/slave/storage/test_events.py b/tests/replication/slave/storage/test_events.py index f33e6f60fb..218cb24889 100644 --- a/tests/replication/slave/storage/test_events.py +++ b/tests/replication/slave/storage/test_events.py @@ -305,7 +305,14 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase): self.event_id += 1 - context = EventContext(current_state=state) + if state is not None: + state_ids = { + key: e.event_id for key, e in state.items() + } + else: + state_ids = None + + context = EventContext(current_state_ids=state_ids) context.push_actions = push_actions ordering = None |