Don't restrict the tests to v1 rooms
This commit is contained in:
parent
cdd3cb870d
commit
f0ef970824
|
@ -34,7 +34,6 @@ class RetentionTestCase(unittest.HomeserverTestCase):
|
||||||
|
|
||||||
def make_homeserver(self, reactor, clock):
|
def make_homeserver(self, reactor, clock):
|
||||||
config = self.default_config()
|
config = self.default_config()
|
||||||
config["default_room_version"] = "1"
|
|
||||||
config["retention"] = {
|
config["retention"] = {
|
||||||
"enabled": True,
|
"enabled": True,
|
||||||
"default_policy": {
|
"default_policy": {
|
||||||
|
@ -204,7 +203,6 @@ class RetentionNoDefaultPolicyTestCase(unittest.HomeserverTestCase):
|
||||||
|
|
||||||
def make_homeserver(self, reactor, clock):
|
def make_homeserver(self, reactor, clock):
|
||||||
config = self.default_config()
|
config = self.default_config()
|
||||||
config["default_room_version"] = "1"
|
|
||||||
config["retention"] = {
|
config["retention"] = {
|
||||||
"enabled": True,
|
"enabled": True,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue