diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-14 12:37:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 12:37:59 -0400 |
commit | ac77cdb64e50c9fdfc00cccbc7b96f42057aa741 (patch) | |
tree | ac110f53cc585a558b91d834b59611eef54bde22 /tests/storage/test_roommember.py | |
parent | Convert pusher databases to async/await. (#8075) (diff) | |
download | synapse-ac77cdb64e50c9fdfc00cccbc7b96f42057aa741.tar.xz |
Add a shadow-banned flag to users. (#8092)
Diffstat (limited to 'tests/storage/test_roommember.py')
-rw-r--r-- | tests/storage/test_roommember.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_roommember.py b/tests/storage/test_roommember.py index 17c9da4838..d98fe8754d 100644 --- a/tests/storage/test_roommember.py +++ b/tests/storage/test_roommember.py @@ -187,7 +187,7 @@ class CurrentStateMembershipUpdateTestCase(unittest.HomeserverTestCase): # Now let's create a room, which will insert a membership user = UserID("alice", "test") - requester = Requester(user, None, False, None, None) + requester = Requester(user, None, False, False, None, None) self.get_success(self.room_creator.create_room(requester, {})) # Register the background update to run again. |