summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2022-06-17 16:58:05 +0200
committerPatrick Cloke <clokep@users.noreply.github.com>2023-05-30 09:43:06 -0400
commitc5cf1b421d8e0d765f812880ff41fe5d244a0919 (patch)
treee92ebe9c6c08222657945f762d477c88f4578ab3 /tests
parentMSC2965: OIDC Provider discovery via well-known document (diff)
downloadsynapse-c5cf1b421d8e0d765f812880ff41fe5d244a0919.tar.xz
Save the scopes in the requester
Diffstat (limited to 'tests')
-rw-r--r--tests/api/test_auth.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py
index 3dac52d178..cdb0048122 100644
--- a/tests/api/test_auth.py
+++ b/tests/api/test_auth.py
@@ -426,6 +426,7 @@ class AuthTestCase(unittest.HomeserverTestCase):
             access_token_id=None,
             device_id="FOOBAR",
             is_guest=False,
+            scope=set(),
             shadow_banned=False,
             app_service=appservice,
             authenticated_entity="@appservice:server",
@@ -456,6 +457,7 @@ class AuthTestCase(unittest.HomeserverTestCase):
             access_token_id=None,
             device_id="FOOBAR",
             is_guest=False,
+            scope=set(),
             shadow_banned=False,
             app_service=appservice,
             authenticated_entity="@appservice:server",