diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-03-07 01:22:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 01:22:53 -0800 |
commit | f6135d06cf94fdef9942051f43872c7518511e74 (patch) | |
tree | e33eda50d2942aee1be2374122465979eb100375 /tests/storage | |
parent | Reword the sample config header to be less scary (#4801) (diff) | |
download | synapse-f6135d06cf94fdef9942051f43872c7518511e74.tar.xz |
Rewrite userdir to be faster (#4537)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_user_directory.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/storage/test_user_directory.py b/tests/storage/test_user_directory.py index 0dde1ab2fe..a2a652a235 100644 --- a/tests/storage/test_user_directory.py +++ b/tests/storage/test_user_directory.py @@ -35,14 +35,12 @@ class UserDirectoryStoreTestCase(unittest.TestCase): # alice and bob are both in !room_id. bobby is not but shares # a homeserver with alice. yield self.store.add_profiles_to_user_dir( - "!room:id", { ALICE: ProfileInfo(None, "alice"), BOB: ProfileInfo(None, "bob"), BOBBY: ProfileInfo(None, "bobby"), }, ) - yield self.store.add_users_to_public_room("!room:id", [ALICE, BOB]) yield self.store.add_users_who_share_room( "!room:id", False, ((ALICE, BOB), (BOB, ALICE)) ) |