Skip to content

Commit faba2c3

Browse files
committed
fixing unit tests
1 parent 73638fe commit faba2c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth-compat/test/integration/flows/phone.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe('Integration test: phone auth', () => {
114114
verifier,
115115
false
116116
)) as ConfirmationResult;
117-
let correctCode = await code(cr);
117+
const correctCode = await code(cr);
118118

119119
stub(window.navigator['credentials'], 'get').callsFake(() => {
120120
const otpCred: OTPCredential = {
@@ -233,7 +233,7 @@ describe('Integration test: phone auth', () => {
233233
verifier,
234234
false
235235
)) as ConfirmationResult;
236-
let correctCode = await code(confirmationRes);
236+
const correctCode = await code(confirmationRes);
237237

238238
stub(window.navigator['credentials'], 'get').callsFake(() => {
239239
const otpCred: OTPCredential = {

0 commit comments

Comments
 (0)