summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2022-03-30 12:10:12 +0100
committerGitHub <noreply@github.com>2022-03-30 11:10:12 +0000
commitc8cbd66d3ba6a6212c0934fcb9aa9b791797c269 (patch)
tree0246f10fe8bdac37a55891412be8f1c514dbaf7b /tests
parentDisable proactive sends for remote joins (#12330) (diff)
downloadsynapse-c8cbd66d3ba6a6212c0934fcb9aa9b791797c269.tar.xz
Start application service stream token tracking from 1 (#12193)
Co-authored-by: Erik Johnston <erik@matrix.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/storage/test_appservice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/storage/test_appservice.py b/tests/storage/test_appservice.py
index ee599f4336..6249eb8c11 100644
--- a/tests/storage/test_appservice.py
+++ b/tests/storage/test_appservice.py
@@ -476,12 +476,12 @@ class ApplicationServiceStoreTypeStreamIds(unittest.HomeserverTestCase):
         value = self.get_success(
             self.store.get_type_stream_id_for_appservice(self.service, "read_receipt")
         )
-        self.assertEqual(value, 0)
+        self.assertEqual(value, 1)
 
         value = self.get_success(
             self.store.get_type_stream_id_for_appservice(self.service, "presence")
         )
-        self.assertEqual(value, 0)
+        self.assertEqual(value, 1)
 
     def test_get_type_stream_id_for_appservice_invalid_type(self) -> None:
         self.get_failure(