diff options
author | David Robertson <davidr@element.io> | 2022-07-04 18:08:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 18:08:56 +0100 |
commit | d102ad67fddc650c34baa89dc7b2926d46a9aeca (patch) | |
tree | 542df6d58640540ea934cd7a5bd0e1486fe96bdf /tests/rest/client/test_relations.py | |
parent | Revert "Up the dependency on canonicaljson to ^1.5.0" (diff) | |
download | synapse-d102ad67fddc650c34baa89dc7b2926d46a9aeca.tar.xz |
annotate tests.server.FakeChannel (#13136)
Diffstat (limited to 'tests/rest/client/test_relations.py')
-rw-r--r-- | tests/rest/client/test_relations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/test_relations.py b/tests/rest/client/test_relations.py index aa84906548..ad03eee17b 100644 --- a/tests/rest/client/test_relations.py +++ b/tests/rest/client/test_relations.py @@ -800,7 +800,7 @@ class RelationPaginationTestCase(BaseRelationsTestCase): ) expected_event_ids.append(channel.json_body["event_id"]) - prev_token = "" + prev_token: Optional[str] = "" found_event_ids: List[str] = [] for _ in range(20): from_token = "" |