diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-13 15:57:26 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-13 15:57:26 +0000 |
commit | 3891597eb3666bbcbe325e38798b9d78b5d70bcc (patch) | |
tree | 80fb713a55eb31aea88313aaecddfdf0c3441b3e /tests | |
parent | get_room_events isn't called anywhere (diff) | |
download | synapse-3891597eb3666bbcbe325e38798b9d78b5d70bcc.tar.xz |
Remove unused functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_room.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/storage/test_room.py b/tests/storage/test_room.py index 11761fe29a..e7739776ec 100644 --- a/tests/storage/test_room.py +++ b/tests/storage/test_room.py @@ -57,17 +57,6 @@ class RoomStoreTestCase(unittest.TestCase): ) @defer.inlineCallbacks - def test_store_room_config(self): - yield self.store.store_room_config(self.room.to_string(), - visibility=False - ) - - self.assertObjectHasAttributes( - {"is_public": False}, - (yield self.store.get_room(self.room.to_string())) - ) - - @defer.inlineCallbacks def test_get_rooms(self): # get_rooms does an INNER JOIN on the room_aliases table :( |