diff options
author | Daniel Wagner-Hall <dawagner@gmail.com> | 2015-11-11 14:38:31 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <dawagner@gmail.com> | 2015-11-11 14:38:31 +0000 |
commit | 5d098a32c9ceebeb7b2625819313ef04e0b363bd (patch) | |
tree | 6623f80d23d38bc4b1720056914e8b14262efef4 /tests/storage | |
parent | Merge pull request #355 from matrix-org/daniel/anonymouswriting (diff) | |
parent | Return world_readable and guest_can_join in /publicRooms (diff) | |
download | synapse-5d098a32c9ceebeb7b2625819313ef04e0b363bd.tar.xz |
Merge pull request #358 from matrix-org/daniel/publicwritable
Return world_readable and guest_can_join in /publicRooms
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_room.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/storage/test_room.py b/tests/storage/test_room.py index caffce64e3..91c967548d 100644 --- a/tests/storage/test_room.py +++ b/tests/storage/test_room.py @@ -73,6 +73,8 @@ class RoomStoreTestCase(unittest.TestCase): "room_id": self.room.to_string(), "topic": None, "aliases": [self.alias.to_string()], + "world_readable": False, + "guest_can_join": False, }, rooms[0]) |