summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-11-26 17:49:12 +0000
committerBrendan Abolivier <babolivier@matrix.org>2019-11-26 17:49:12 +0000
commitf0ef9708241ec65fe6f32f1ad36f719ab4ab2b53 (patch)
treeebf60bb974a3bd4f760c07d67550c3ba0c2b16b4 /tests
parentFix worker mode (diff)
downloadsynapse-f0ef9708241ec65fe6f32f1ad36f719ab4ab2b53.tar.xz
Don't restrict the tests to v1 rooms
Diffstat (limited to 'tests')
-rw-r--r--tests/rest/client/test_retention.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/rest/client/test_retention.py b/tests/rest/client/test_retention.py
index 9e549d8a91..95475bb651 100644
--- a/tests/rest/client/test_retention.py
+++ b/tests/rest/client/test_retention.py
@@ -34,7 +34,6 @@ class RetentionTestCase(unittest.HomeserverTestCase):
 
     def make_homeserver(self, reactor, clock):
         config = self.default_config()
-        config["default_room_version"] = "1"
         config["retention"] = {
             "enabled": True,
             "default_policy": {
@@ -204,7 +203,6 @@ class RetentionNoDefaultPolicyTestCase(unittest.HomeserverTestCase):
 
     def make_homeserver(self, reactor, clock):
         config = self.default_config()
-        config["default_room_version"] = "1"
         config["retention"] = {
             "enabled": True,
         }