From 84439cff86ff637f5d8b53cb5bc1c76ec750743a Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 15 Jan 2020 14:06:44 -0700 Subject: [PATCH] Import the cryptostore from the right place --- test/app-tests/loading-test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/app-tests/loading-test.js b/test/app-tests/loading-test.js index 462b85cea6..090024f0ae 100644 --- a/test/app-tests/loading-test.js +++ b/test/app-tests/loading-test.js @@ -38,6 +38,7 @@ import {ValidatedServerConfig} from "matrix-react-sdk/src/utils/AutoDiscoveryUti import {sleep} from "../test-utils"; import "fake-indexeddb/auto"; import {cleanLocalstorage} from "../test-utils"; +import {IndexedDBCryptoStore} from "matrix-js-sdk/src/crypto/store/indexeddb-crypto-store"; const DEFAULT_HS_URL='http://my_server'; const DEFAULT_IS_URL='http://my_is'; @@ -305,7 +306,7 @@ describe('loading:', function() { localStorage.setItem("mx_last_room_id", "!last_room:id"); // Create a crypto store as well to satisfy storage consistency checks - const cryptoStore = new jssdk.IndexedDBCryptoStore( + const cryptoStore = new IndexedDBCryptoStore( indexedDB, "matrix-js-sdk:crypto", );