summary refs log tree commit diff
path: root/tests/rest
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-01-21 12:25:02 +0000
committerGitHub <noreply@github.com>2021-01-21 12:25:02 +0000
commit7447f197026db570c1c1af240642566b31f81e42 (patch)
treef4c1707b40e8161918b732589f6ee64048e5dd0d /tests/rest
parentFix a typo in the release notes. (diff)
downloadsynapse-7447f197026db570c1c1af240642566b31f81e42.tar.xz
Prefix idp_id with "oidc-" (#9189)
... to avoid clashes with other SSO mechanisms
Diffstat (limited to 'tests/rest')
-rw-r--r--tests/rest/client/v1/test_login.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/v1/test_login.py b/tests/rest/client/v1/test_login.py
index 2d25490374..2672ce24c6 100644
--- a/tests/rest/client/v1/test_login.py
+++ b/tests/rest/client/v1/test_login.py
@@ -446,7 +446,7 @@ class MultiSSOTestCase(unittest.HomeserverTestCase):
         p.feed(channel.result["body"].decode("utf-8"))
         p.close()
 
-        self.assertCountEqual(p.radios["idp"], ["cas", "oidc", "idp1", "saml"])
+        self.assertCountEqual(p.radios["idp"], ["cas", "oidc", "oidc-idp1", "saml"])
 
         self.assertEqual(p.hiddens["redirectUrl"], TEST_CLIENT_REDIRECT_URL)