diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-10-09 19:18:09 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-10-09 19:18:09 +0100 |
commit | af7b21447648cba477542bc1786be2a6c0928e37 (patch) | |
tree | 74c4481acd515a180c0edeb05d1a03b52ba30fd6 /tests/test_state.py | |
parent | Format the presence events correctly for v2 (diff) | |
parent | Split the sections of EventStreamHandler.get_stream that handle presence (diff) | |
download | synapse-af7b21447648cba477542bc1786be2a6c0928e37.tar.xz |
Merge branch 'markjh/eventstream_presence' into markjh/v2_sync_api
Diffstat (limited to 'tests/test_state.py')
-rw-r--r-- | tests/test_state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_state.py b/tests/test_state.py index 55f37c521f..0274c4bc18 100644 --- a/tests/test_state.py +++ b/tests/test_state.py @@ -35,7 +35,7 @@ def create_event(name=None, type=None, state_key=None, depth=2, event_id=None, if not event_id: _next_event_id += 1 - event_id = str(_next_event_id) + event_id = "$%s:test" % (_next_event_id,) if not name: if state_key is not None: |