diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-11-03 17:31:17 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-11-03 17:31:17 +0000 |
commit | a3bfef35fd5fc26723d377839e1200f2de733723 (patch) | |
tree | 6315a13c38c7d55defff5b8674645d57b6ca47e3 /tests/rest/client | |
parent | Include read receipts in v2 sync (diff) | |
parent | Merge pull request #335 from matrix-org/markjh/room_tags (diff) | |
download | synapse-a3bfef35fd5fc26723d377839e1200f2de733723.tar.xz |
Merge branch 'develop' into markjh/v2_sync_receipts
Conflicts: synapse/handlers/sync.py
Diffstat (limited to 'tests/rest/client')
-rw-r--r-- | tests/rest/client/v1/test_presence.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py index 29d9bbaad4..0e3b922246 100644 --- a/tests/rest/client/v1/test_presence.py +++ b/tests/rest/client/v1/test_presence.py @@ -369,7 +369,7 @@ class PresenceEventStreamTestCase(unittest.TestCase): # all be ours # I'll already get my own presence state change - self.assertEquals({"start": "0_1_0_0", "end": "0_1_0_0", "chunk": []}, + self.assertEquals({"start": "0_1_0_0_0", "end": "0_1_0_0_0", "chunk": []}, response ) @@ -388,7 +388,7 @@ class PresenceEventStreamTestCase(unittest.TestCase): "/events?from=s0_1_0&timeout=0", None) self.assertEquals(200, code) - self.assertEquals({"start": "s0_1_0_0", "end": "s0_2_0_0", "chunk": [ + self.assertEquals({"start": "s0_1_0_0_0", "end": "s0_2_0_0_0", "chunk": [ {"type": "m.presence", "content": { "user_id": "@banana:test", |