Merge pull request #8467 from matrix-org/rav/fix_3pevent_rules

Fix third-party event modules for `check_visibility_can_be_modified` check
This commit is contained in:
Richard van der Hoff 2020-10-06 11:32:53 +01:00 committed by GitHub
commit 9c0b168cff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -49,7 +49,7 @@ class ThirdPartyRulesTestCase(unittest.HomeserverTestCase):
def make_homeserver(self, reactor, clock):
config = self.default_config()
config["third_party_event_rules"] = {
"module": "tests.rest.client.third_party_rules.ThirdPartyRulesTestModule",
"module": __name__ + ".ThirdPartyRulesTestModule",
"config": {},
}