diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-12-04 08:25:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 08:25:15 -0500 |
commit | 22c6c19f91d7325c82eddfada696826adad69e5b (patch) | |
tree | 7948c3f80aff6ad6f2ff11e2a56676a70c3346b5 /tests/handlers/test_oidc.py | |
parent | Remove version pin prometheus_client dependency (#8875) (diff) | |
download | synapse-22c6c19f91d7325c82eddfada696826adad69e5b.tar.xz |
Fix a regression that mapping providers should be able to redirect users. (#8878)
This was broken in #8801.
Diffstat (limited to 'tests/handlers/test_oidc.py')
-rw-r--r-- | tests/handlers/test_oidc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/handlers/test_oidc.py b/tests/handlers/test_oidc.py index d485af52fd..a308c46da9 100644 --- a/tests/handlers/test_oidc.py +++ b/tests/handlers/test_oidc.py @@ -705,8 +705,7 @@ class OidcHandlerTestCase(HomeserverTestCase): MappingException, ) self.assertEqual( - str(e.value), - "Could not extract user attributes from SSO response: Mapping provider does not support de-duplicating Matrix IDs", + str(e.value), "Mapping provider does not support de-duplicating Matrix IDs", ) @override_config({"oidc_config": {"allow_existing_users": True}}) |