diff options
author | Quentin Gliech <quenting@element.io> | 2022-06-17 16:58:05 +0200 |
---|---|---|
committer | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-30 09:43:06 -0400 |
commit | c5cf1b421d8e0d765f812880ff41fe5d244a0919 (patch) | |
tree | e92ebe9c6c08222657945f762d477c88f4578ab3 /tests | |
parent | MSC2965: OIDC Provider discovery via well-known document (diff) | |
download | synapse-c5cf1b421d8e0d765f812880ff41fe5d244a0919.tar.xz |
Save the scopes in the requester
Diffstat (limited to 'tests')
-rw-r--r-- | tests/api/test_auth.py | 2 |
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", |