summary refs log tree commit diff
path: root/tests/rest
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-08-26 17:26:56 +0100
committerGitHub <noreply@github.com>2020-08-26 17:26:56 +0100
commitb8f20e4276ea23dabcc3882dcee5773f856c39d0 (patch)
treed3e873bdd253564b61934d114ad2b63cd219a3ad /tests/rest
parentDo not propagate typing notifications from shadow-banned users. (#8176) (diff)
downloadsynapse-b8f20e4276ea23dabcc3882dcee5773f856c39d0.tar.xz
Remove remaining is_guest argument uses from get_room_data calls (#8181)
#8174 removed the `is_guest` parameter from `get_room_data`, at the same time that #8157 was merged using it, colliding together to break unit tests on develop.

This PR removes the `is_guest` parameter from the call in the broken test.

Uses the same changelog as #8174.
Diffstat (limited to 'tests/rest')
-rw-r--r--tests/rest/client/test_shadow_banned.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/rest/client/test_shadow_banned.py b/tests/rest/client/test_shadow_banned.py
index 0c48a9fd5e..dfe4bf7762 100644
--- a/tests/rest/client/test_shadow_banned.py
+++ b/tests/rest/client/test_shadow_banned.py
@@ -271,11 +271,7 @@ class ProfileTestCase(_ShadowBannedBase):
         message_handler = self.hs.get_message_handler()
         event = self.get_success(
             message_handler.get_room_data(
-                self.banned_user_id,
-                room_id,
-                "m.room.member",
-                self.banned_user_id,
-                False,
+                self.banned_user_id, room_id, "m.room.member", self.banned_user_id,
             )
         )
         self.assertEqual(
@@ -308,11 +304,7 @@ class ProfileTestCase(_ShadowBannedBase):
         message_handler = self.hs.get_message_handler()
         event = self.get_success(
             message_handler.get_room_data(
-                self.banned_user_id,
-                room_id,
-                "m.room.member",
-                self.banned_user_id,
-                False,
+                self.banned_user_id, room_id, "m.room.member", self.banned_user_id,
             )
         )
         self.assertEqual(