summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-03-05 12:24:49 +0000
committerRichard van der Hoff <richard@matrix.org>2018-03-05 12:24:49 +0000
commit2c911d75e820e321c3e9c885f74ffeabd666b60f (patch)
tree07f2eed2d1dc170dc126d78cc549773e8cba9835 /tests
parentTest and fix find_first_stream_ordering_after_ts (diff)
downloadsynapse-2c911d75e820e321c3e9c885f74ffeabd666b60f.tar.xz
Fix comment typo
Diffstat (limited to 'tests')
-rw-r--r--tests/storage/test_event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_event_push_actions.py b/tests/storage/test_event_push_actions.py
index dbaaa12e23..575374c6a6 100644
--- a/tests/storage/test_event_push_actions.py
+++ b/tests/storage/test_event_push_actions.py
@@ -172,7 +172,7 @@ class EventPushActionsStoreTestCase(tests.unittest.TestCase):
         self.assertEqual(r, 3,
                          "First event after 110ms should be 3, was %i" % r)
 
-        # 4 and 5 are both after 12: we want 4 rather than 5
+        # 4 and 5 are both after 120: we want 4 rather than 5
         r = yield self.store.find_first_stream_ordering_after_ts(120)
         self.assertEqual(r, 4,
                          "First event after 120ms should be 4, was %i" % r)