summary refs log tree commit diff
path: root/tests/module_api/test_api.py
diff options
context:
space:
mode:
authorBen Banfield-Zanin <benbz@matrix.org>2020-10-15 14:38:01 +0100
committerBen Banfield-Zanin <benbz@matrix.org>2020-10-15 14:38:01 +0100
commit57885709a7b8b9eb87c4d8e61e8f210b18103227 (patch)
tree8532607f2bf34565d817df82100a5b5ebb1f27bf /tests/module_api/test_api.py
parentAccept a keycloak identity provider hint from the client and pass it through ... (diff)
parentRemove racey assertion in MultiWriterIDGenerator (#8530) (diff)
downloadsynapse-57885709a7b8b9eb87c4d8e61e8f210b18103227.tar.xz
Merge remote-tracking branch 'origin/release-v1.21.2' into toml/keycloak_hints
Diffstat (limited to 'tests/module_api/test_api.py')
-rw-r--r--tests/module_api/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/module_api/test_api.py b/tests/module_api/test_api.py

index 807cd65dd6..04de0b9dbe 100644 --- a/tests/module_api/test_api.py +++ b/tests/module_api/test_api.py
@@ -35,7 +35,7 @@ class ModuleApiTestCase(HomeserverTestCase): # Check that the new user exists with all provided attributes self.assertEqual(user_id, "@bob:test") self.assertTrue(access_token) - self.assertTrue(self.store.get_user_by_id(user_id)) + self.assertTrue(self.get_success(self.store.get_user_by_id(user_id))) # Check that the email was assigned emails = self.get_success(self.store.user_get_threepids(user_id))