summary refs log tree commit diff
path: root/tests/api
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2021-06-29 11:27:25 +0100
committerRichard van der Hoff <richard@matrix.org>2021-06-29 11:27:25 +0100
commit077d441d42a34c994a3eeeaa2068b837a96e5a7c (patch)
treef6e387b9288d7f932c618aa2983cc75b6f28facd /tests/api
parentFix SQL (diff)
parentMigrate stream_ordering to a bigint (#10264) (diff)
downloadsynapse-077d441d42a34c994a3eeeaa2068b837a96e5a7c.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'tests/api')
-rw-r--r--tests/api/test_auth.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py

index 1b0a815757..f76fea4f66 100644 --- a/tests/api/test_auth.py +++ b/tests/api/test_auth.py
@@ -58,6 +58,7 @@ class AuthTestCase(unittest.HomeserverTestCase): user_id=self.test_user, token_id=5, device_id="device" ) self.store.get_user_by_access_token = simple_async_mock(user_info) + self.store.mark_access_token_as_used = simple_async_mock(None) request = Mock(args={}) request.args[b"access_token"] = [self.test_token]