Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
BillCarsonFr authored and richvdh committed Jul 26, 2023
1 parent 36474f4 commit 352c29e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spec/integ/crypto/megolm-backup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import { E2EKeyResponder } from "../../test-utils/E2EKeyResponder";
import { mockInitialApiRequests } from "../../test-utils/mockEndpoints";
import { awaitDecryption, syncPromise } from "../../test-utils/test-utils";
import * as testData from "../../test-utils/test-data";
import { KeyBackupStatus } from "../../../src/crypto-api/keybackup";

const ROOM_ID = "!ROOM:ID";

Expand Down Expand Up @@ -174,7 +173,7 @@ describe("megolm key backups", function () {
await aliceClient.startClient();

// At this point there is no backup
let backupStatus: KeyBackupStatus | null;
let backupStatus: string | null;
backupStatus = await aliceClient.getCrypto()!.backupManager.getKeyBackupStatus();
expect(backupStatus).toBeNull();

Expand Down

0 comments on commit 352c29e

Please sign in to comment.