1 files changed, 9 insertions, 2 deletions
diff --git a/tests/federation/transport/test_knocking.py b/tests/federation/transport/test_knocking.py
index 9e30037ea3..f60fdd7983 100644
--- a/tests/federation/transport/test_knocking.py
+++ b/tests/federation/transport/test_knocking.py
@@ -229,8 +229,15 @@ class FederationKnockingTestCase(
_, channel = self.make_request(
"GET",
- "/_matrix/federation/unstable/%s/make_knock/%s/%s"
- % (KNOCK_UNSTABLE_IDENTIFIER, room_id, fake_knocking_user_id),
+ "/_matrix/federation/unstable/%s/make_knock/%s/%s?ver=%s"
+ % (
+ KNOCK_UNSTABLE_IDENTIFIER,
+ room_id,
+ fake_knocking_user_id,
+ # Inform the remote that we support the room version of the room we're
+ # knocking on
+ RoomVersions.MSC2403_DEV.identifier,
+ ),
)
self.assertEquals(200, channel.code, channel.result)
|