Skip to content

Commit 0c1809b

Browse files
committed
lint
1 parent 802f9a4 commit 0c1809b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/end-to-end-tests/src/usecases/signup.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ module.exports = async function signup(session, username, password, homeserver)
7979
const acceptButton = await session.query('.mx_InteractiveAuthEntryComponents_termsSubmit');
8080
await acceptButton.click();
8181

82-
let xsignContButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
82+
const xsignContButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
8383
await xsignContButton.click();
8484

8585
//ignore the recovery key
@@ -88,7 +88,9 @@ module.exports = async function signup(session, username, password, homeserver)
8888
await copyButton.click();
8989

9090
//acknowledge that we copied the recovery key to a safe place
91-
const copyContinueButton = await session.query('.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary');
91+
const copyContinueButton = await session.query(
92+
'.mx_CreateSecretStorageDialog .mx_Dialog_buttons .mx_Dialog_primary',
93+
);
9294
await copyContinueButton.click();
9395

9496
//wait for registration to finish so the hash gets set

0 commit comments

Comments
 (0)