diff options
author | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-06-04 12:58:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 12:58:03 -0500 |
commit | 7d8f0ef351e99adf602b3acb67b2516a02ff6918 (patch) | |
tree | f8fdbcd3578d0866a236e589062b80360f549a3b /tests | |
parent | Merge branch 'release-v1.109' into develop (diff) | |
download | synapse-7d8f0ef351e99adf602b3acb67b2516a02ff6918.tar.xz |
Use fully-qualified `PersistedEventPosition` when returning `RoomsForUser` (#17265)
Use fully-qualified `PersistedEventPosition` (`instance_name` and `stream_ordering`) when returning `RoomsForUser` to facilitate proper comparisons and `RoomStreamToken` generation. Spawning from https://github.com/element-hq/synapse/pull/17187 where we want to utilize this change
Diffstat (limited to 'tests')
-rw-r--r-- | tests/replication/storage/test_events.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/replication/storage/test_events.py b/tests/replication/storage/test_events.py index 86c8f14d1b..4e41a1c912 100644 --- a/tests/replication/storage/test_events.py +++ b/tests/replication/storage/test_events.py @@ -154,7 +154,10 @@ class EventsWorkerStoreTestCase(BaseWorkerStoreTestCase): USER_ID, "invite", event.event_id, - event.internal_metadata.stream_ordering, + PersistedEventPosition( + self.hs.get_instance_name(), + event.internal_metadata.stream_ordering, + ), RoomVersions.V1.identifier, ) ], |