diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-23 12:03:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 12:03:03 +0100 |
commit | 7b6d99fa5aed2d8e0f71e75b12b26ade24701963 (patch) | |
tree | c96bca83c8dba442c63c52e8e18bae29a1eb8ce8 /tests/storage/test_appservice.py | |
parent | Merge pull request #5726 from matrix-org/uhoreg/e2e_cross-signing2-part2 (diff) | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/refactor_s... (diff) | |
download | synapse-7b6d99fa5aed2d8e0f71e75b12b26ade24701963.tar.xz |
Merge pull request #6231 from matrix-org/erikj/refactor_stores
Refactor storage layer to support multiple databases
Diffstat (limited to 'tests/storage/test_appservice.py')
-rw-r--r-- | tests/storage/test_appservice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_appservice.py b/tests/storage/test_appservice.py index 622b16a071..dfeea24599 100644 --- a/tests/storage/test_appservice.py +++ b/tests/storage/test_appservice.py @@ -24,7 +24,7 @@ from twisted.internet import defer from synapse.appservice import ApplicationService, ApplicationServiceState from synapse.config._base import ConfigError -from synapse.storage.appservice import ( +from synapse.storage.data_stores.main.appservice import ( ApplicationServiceStore, ApplicationServiceTransactionStore, ) |