summary refs log tree commit diff
path: root/tests/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-01-30 17:06:38 +0000
committerGitHub <noreply@github.com>2020-01-30 17:06:38 +0000
commitb660327056cdced860d532ab2404a26946da7ef5 (patch)
treec13d3e1668c930cd2154c217bb88d44ffb820209 /tests/handlers
parentFix sending server up commands from workers (#6811) (diff)
downloadsynapse-b660327056cdced860d532ab2404a26946da7ef5.tar.xz
Resync remote device list when detected as stale. (#6786)
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/test_typing.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py
index 596ddc6970..68b9847bd2 100644
--- a/tests/handlers/test_typing.py
+++ b/tests/handlers/test_typing.py
@@ -81,6 +81,9 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase):
             ]
         )
 
+        # the tests assume that we are starting at unix time 1000
+        reactor.pump((1000,))
+
         hs = self.setup_test_homeserver(
             notifier=Mock(), http_client=mock_federation_client, keyring=mock_keyring
         )
@@ -90,9 +93,6 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase):
         return hs
 
     def prepare(self, reactor, clock, hs):
-        # the tests assume that we are starting at unix time 1000
-        reactor.pump((1000,))
-
         mock_notifier = hs.get_notifier()
         self.on_new_event = mock_notifier.on_new_event