diff options
author | Mark Haines <mjark@negativecurvature.net> | 2015-02-11 11:46:08 +0000 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2015-02-11 11:46:08 +0000 |
commit | f42e29cf956c00be618fa4601441d62848c1270c (patch) | |
tree | df5ce8afb4c2972408c758e0ace795046ba170a6 /tests/storage/test_presence.py | |
parent | Fix bug where variable was not always defined (diff) | |
parent | Factor out some of the common homeserver setup code into a (diff) | |
download | synapse-f42e29cf956c00be618fa4601441d62848c1270c.tar.xz |
Merge pull request #63 from matrix-org/homeserver_test_setup
Factor out some of the common homeserver setup code
Diffstat (limited to 'tests/storage/test_presence.py')
-rw-r--r-- | tests/storage/test_presence.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/storage/test_presence.py b/tests/storage/test_presence.py index 1ab193736b..065eebdbcf 100644 --- a/tests/storage/test_presence.py +++ b/tests/storage/test_presence.py @@ -17,24 +17,17 @@ from tests import unittest from twisted.internet import defer -from synapse.server import HomeServer from synapse.storage.presence import PresenceStore from synapse.types import UserID -from tests.utils import SQLiteMemoryDbPool, MockClock +from tests.utils import setup_test_homeserver, MockClock class PresenceStoreTestCase(unittest.TestCase): @defer.inlineCallbacks def setUp(self): - db_pool = SQLiteMemoryDbPool() - yield db_pool.prepare() - - hs = HomeServer("test", - clock=MockClock(), - db_pool=db_pool, - ) + hs = yield setup_test_homeserver(clock=MockClock()) self.store = PresenceStore(hs) |