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.
This commit is contained in:
Andrew Morgan 2020-08-26 17:26:56 +01:00 committed by GitHub
parent 6fe12c9512
commit b8f20e4276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 10 deletions

1
changelog.d/8181.misc Normal file
View File

@ -0,0 +1 @@
Remove unused `is_guest` parameter from, and add safeguard to, `MessageHandler.get_room_data`.

View File

@ -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(