diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-09-18 16:50:39 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-09-18 16:50:39 +0100 |
commit | a078de955f34baf8c997c0782b0a1773189fc182 (patch) | |
tree | e0b3c435dc469c96d0634d84aefe71c358043a73 /tests/storage/test_profile.py | |
parent | Add comment (diff) | |
parent | Merge pull request #3879 from matrix-org/matthew/fix-autojoin (diff) | |
download | synapse-matthew/fix_overzealous_ll_state.tar.xz |
Merge branch 'develop' into matthew/fix_overzealous_ll_state github/matthew/fix_overzealous_ll_state matthew/fix_overzealous_ll_state
Diffstat (limited to 'tests/storage/test_profile.py')
-rw-r--r-- | tests/storage/test_profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_profile.py b/tests/storage/test_profile.py index a1f6618bf9..45824bd3b2 100644 --- a/tests/storage/test_profile.py +++ b/tests/storage/test_profile.py @@ -28,7 +28,7 @@ class ProfileStoreTestCase(unittest.TestCase): def setUp(self): hs = yield setup_test_homeserver(self.addCleanup) - self.store = ProfileStore(None, hs) + self.store = ProfileStore(hs.get_db_conn(), hs) self.u_frank = UserID.from_string("@frank:test") |