From 039378c68409ad148b28a5d7bb8c3fbe68021236 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 24 Feb 2022 20:29:41 -0600 Subject: [PATCH] Use MSC2716 room version that exists During the development of https://github.com/matrix-org/synapse/pull/11243 we added a `org.matrix.msc2716v4` room version but it's no longer necessary and was removed in https://github.com/matrix-org/synapse/pull/11243/commits/e2928b54a2b4359f6034b6d557c7f36512747ec3 --- tests/msc2716_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/msc2716_test.go b/tests/msc2716_test.go index e3163f3b..a8d1dee4 100644 --- a/tests/msc2716_test.go +++ b/tests/msc2716_test.go @@ -50,13 +50,13 @@ var ( var createPublicRoomOpts = map[string]interface{}{ "preset": "public_chat", "name": "the hangout spot", - "room_version": "org.matrix.msc2716v4", + "room_version": "org.matrix.msc2716v3", } var createPrivateRoomOpts = map[string]interface{}{ "preset": "private_chat", "name": "the hangout spot", - "room_version": "org.matrix.msc2716v4", + "room_version": "org.matrix.msc2716v3", } func TestImportHistoricalMessages(t *testing.T) {