diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-23 11:55:12 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-23 11:55:12 +0000 |
commit | 1c06c48ce2db3c6355e29de1533aebf36bc3775b (patch) | |
tree | a114a45bcf1a1f9184344381548fd58008013ece /tests/storage/test_stream.py | |
parent | Replace hs.parse_userid with UserID.from_string (diff) | |
download | synapse-1c06c48ce2db3c6355e29de1533aebf36bc3775b.tar.xz |
Replace hs.parse_roomid with RoomID.from_string
Diffstat (limited to 'tests/storage/test_stream.py')
-rw-r--r-- | tests/storage/test_stream.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/storage/test_stream.py b/tests/storage/test_stream.py index d7c7f64d5e..b7f6e2aa80 100644 --- a/tests/storage/test_stream.py +++ b/tests/storage/test_stream.py @@ -19,7 +19,7 @@ from twisted.internet import defer from synapse.server import HomeServer from synapse.api.constants import EventTypes, Membership -from synapse.types import UserID +from synapse.types import UserID, RoomID from tests.utils import SQLiteMemoryDbPool, MockKey @@ -52,8 +52,8 @@ class StreamStoreTestCase(unittest.TestCase): self.u_alice = UserID.from_string("@alice:test") self.u_bob = UserID.from_string("@bob:test") - self.room1 = hs.parse_roomid("!abc123:test") - self.room2 = hs.parse_roomid("!xyx987:test") + self.room1 = RoomID.from_string("!abc123:test") + self.room2 = RoomID.from_string("!xyx987:test") self.depth = 1 |