summary refs log tree commit diff
path: root/tests/rest/client/test_sync.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@element.io>2024-06-19 17:18:45 +0100
committerGitHub <noreply@github.com>2024-06-19 16:18:45 +0000
commit3239b7459c88d02be33975addcddfc39126575e7 (patch)
tree4b8ae40976b66a6ec22e46ec19925ac268fe5313 /tests/rest/client/test_sync.py
parentregister-new-matrix-user: add a flag to ignore already existing users (#17304) (diff)
downloadsynapse-3239b7459c88d02be33975addcddfc39126575e7.tar.xz
Register sliding sync under a different path (#17331)
As the API is slightly incompatible.
Diffstat (limited to 'tests/rest/client/test_sync.py')
-rw-r--r--tests/rest/client/test_sync.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/rest/client/test_sync.py b/tests/rest/client/test_sync.py

index 2b06767b8a..5195659ec2 100644 --- a/tests/rest/client/test_sync.py +++ b/tests/rest/client/test_sync.py
@@ -1228,7 +1228,9 @@ class SlidingSyncTestCase(unittest.HomeserverTestCase): def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None: self.store = hs.get_datastores().main - self.sync_endpoint = "/_matrix/client/unstable/org.matrix.msc3575/sync" + self.sync_endpoint = ( + "/_matrix/client/unstable/org.matrix.simplified_msc3575/sync" + ) self.store = hs.get_datastores().main self.event_sources = hs.get_event_sources()