From 1de016a9b508f5a230b416a17d95369cc0ce3b1d Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Tue, 1 Dec 2020 12:47:41 -0500 Subject: [PATCH] Update comments. --- tests/handlers/test_oidc.py | 2 +- tests/handlers/test_saml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/handlers/test_oidc.py b/tests/handlers/test_oidc.py index c5a07c15c7..0ca95e9b0c 100644 --- a/tests/handlers/test_oidc.py +++ b/tests/handlers/test_oidc.py @@ -832,7 +832,7 @@ class OidcHandlerTestCase(HomeserverTestCase): # test_user is already taken, so test_user1 gets registered instead. self.assertEqual(mxid, "@test_user1:test") - # Register all of the potential usernames for a particular username. + # Register all of the potential mxids for a particular OIDC username. self.get_success( store.register_user(user_id="@tester:test", password_hash=None) ) diff --git a/tests/handlers/test_saml.py b/tests/handlers/test_saml.py index 3873da9b54..5d60b4677f 100644 --- a/tests/handlers/test_saml.py +++ b/tests/handlers/test_saml.py @@ -121,7 +121,7 @@ class SamlHandlerTestCase(HomeserverTestCase): # test_user is already taken, so test_user1 gets registered instead. self.assertEqual(mxid, "@test_user1:test") - # Register all of the potential usernames for a particular username. + # Register all of the potential mxids for a particular SAML username. self.get_success( store.register_user(user_id="@tester:test", password_hash=None) )