diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-24 09:28:16 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-24 09:28:16 +0000 |
commit | e79ba9eb34697cb6205c50282882b294c0acafa7 (patch) | |
tree | d0ff51cd2df3e1cd72b9485b841ab64c18bd223a /tests/test_visibility.py | |
parent | Newsfile (diff) | |
download | synapse-e79ba9eb34697cb6205c50282882b294c0acafa7.tar.xz |
Fix tests
Diffstat (limited to 'tests/test_visibility.py')
-rw-r--r-- | tests/test_visibility.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_visibility.py b/tests/test_visibility.py index 2eea3b098b..82d63ce00e 100644 --- a/tests/test_visibility.py +++ b/tests/test_visibility.py @@ -17,6 +17,7 @@ import logging from twisted.internet import defer from twisted.internet.defer import succeed +from synapse.api.constants import RoomVersions from synapse.events import FrozenEvent from synapse.visibility import filter_events_for_server @@ -124,6 +125,7 @@ class FilterEventsForServerTestCase(tests.unittest.TestCase): def inject_visibility(self, user_id, visibility): content = {"history_visibility": visibility} builder = self.event_builder_factory.new( + RoomVersions.V1, { "type": "m.room.history_visibility", "sender": user_id, @@ -144,6 +146,7 @@ class FilterEventsForServerTestCase(tests.unittest.TestCase): content = {"membership": membership} content.update(extra_content) builder = self.event_builder_factory.new( + RoomVersions.V1, { "type": "m.room.member", "sender": user_id, @@ -165,6 +168,7 @@ class FilterEventsForServerTestCase(tests.unittest.TestCase): if content is None: content = {"body": "testytest"} builder = self.event_builder_factory.new( + RoomVersions.V1, { "type": "m.room.message", "sender": user_id, |