diff options
author | Kegsay <kegan@matrix.org> | 2020-06-17 12:05:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 12:05:56 +0100 |
commit | e09d24e7323e73791e7bb31fa7fac1d3acf0c299 (patch) | |
tree | 85600bfe84e938ffeb48d7a152f968f86b78fcdf /userapi/userapi_test.go | |
parent | 5d5aa0a31d60941c7ece95b4b516044cb8a10cce (diff) |
Move account/device DBs to userapi (#1141)
Diffstat (limited to 'userapi/userapi_test.go')
-rw-r--r-- | userapi/userapi_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/userapi/userapi_test.go b/userapi/userapi_test.go index 509bdd7e..163b10ec 100644 --- a/userapi/userapi_test.go +++ b/userapi/userapi_test.go @@ -8,13 +8,13 @@ import ( "testing" "github.com/gorilla/mux" - "github.com/matrix-org/dendrite/clientapi/auth/storage/accounts" - "github.com/matrix-org/dendrite/clientapi/auth/storage/devices" "github.com/matrix-org/dendrite/internal/httputil" "github.com/matrix-org/dendrite/internal/test" "github.com/matrix-org/dendrite/userapi" "github.com/matrix-org/dendrite/userapi/api" "github.com/matrix-org/dendrite/userapi/inthttp" + "github.com/matrix-org/dendrite/userapi/storage/accounts" + "github.com/matrix-org/dendrite/userapi/storage/devices" "github.com/matrix-org/gomatrixserverlib" ) |