From 69f91436cfbe4c640d7d48fccc418fa63e860f7a Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 8 May 2024 10:54:54 -0500 Subject: [PATCH] Comment on tests --- tests/rest/client/test_sliding_sync.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/rest/client/test_sliding_sync.py b/tests/rest/client/test_sliding_sync.py index d8974a9a2c..46dde59e86 100644 --- a/tests/rest/client/test_sliding_sync.py +++ b/tests/rest/client/test_sliding_sync.py @@ -7,7 +7,8 @@ from synapse.util import Clock from tests.rest.client.test_sendtodevice import SendToDeviceTestCase -class SlidingSyncSendToDeviceTestCase(SendToDeviceTestCase): +# Test To-Device messages working correctly with the `/sync/e2ee` endpoint (`to_device`) +class SlidingSyncE2eeSendToDeviceTestCase(SendToDeviceTestCase): def default_config(self) -> JsonDict: config = super().default_config() # Enable sliding sync @@ -18,4 +19,4 @@ class SlidingSyncSendToDeviceTestCase(SendToDeviceTestCase): # Use the Sliding Sync `/sync/e2ee` endpoint self.sync_endpoint = "/_matrix/client/unstable/org.matrix.msc3575/sync/e2ee" - # See SendToDeviceTestCase + # See SendToDeviceTestCase for tests