summary refs log tree commit diff
path: root/tests/handlers/test_typing.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-18 17:53:47 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-18 17:53:47 +0000
commitd4ac2758dd712d8cddf235c3ee9c66b48f47cb0f (patch)
tree4b0ec8d6fe8ab0512541e2c29220ab5f0e3d746f /tests/handlers/test_typing.py
parentadd etag and count to key backup endpoints (#5858) (diff)
parentImplementation of MSC2314 (#6176) (diff)
downloadsynapse-d4ac2758dd712d8cddf235c3ee9c66b48f47cb0f.tar.xz
Implementation of MSC2314 (#6176)
* commit '0f87b912a':
  Implementation of MSC2314 (#6176)
Diffstat (limited to 'tests/handlers/test_typing.py')
-rw-r--r--tests/handlers/test_typing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py

index 5ec568f4e6..f6d8660285 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py
@@ -24,6 +24,7 @@ from synapse.api.errors import AuthError from synapse.types import UserID from tests import unittest +from tests.unittest import override_config from tests.utils import register_federation_servlets # Some local users to test with @@ -174,6 +175,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): ], ) + @override_config({"send_federation": True}) def test_started_typing_remote_send(self): self.room_members = [U_APPLE, U_ONION] @@ -237,6 +239,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): ], ) + @override_config({"send_federation": True}) def test_stopped_typing(self): self.room_members = [U_APPLE, U_BANANA, U_ONION]