diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2021-11-19 19:44:13 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2021-11-19 20:09:30 +0000 |
commit | 8b0bbc1fb484115c4e5ad69fc471130c6876755b (patch) | |
tree | 123b18c72a84ed126dd36aa9de9a22020d89805f | |
parent | _handle_to_device -> _get_to_device_messages (diff) | |
download | synapse-8b0bbc1fb484115c4e5ad69fc471130c6876755b.tar.xz |
Rename ApplicationServiceEphemeralEventsTestCase
-rw-r--r-- | tests/handlers/test_appservice.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/handlers/test_appservice.py b/tests/handlers/test_appservice.py index fc37b8729d..a2260129d4 100644 --- a/tests/handlers/test_appservice.py +++ b/tests/handlers/test_appservice.py @@ -333,7 +333,11 @@ class AppServiceHandlerTestCase(unittest.TestCase): return service -class ApplicationServiceEphemeralEventsTestCase(unittest.HomeserverTestCase): +class ApplicationServicesHandlerSendEventsTestCase(unittest.HomeserverTestCase): + """ + Tests that the ApplicationServicesHandler sends events to application + services correctly. + """ servlets = [ synapse.rest.admin.register_servlets_for_client_rest_resource, login.register_servlets, |