Skip to content

Commit ce222f1

Browse files
committed
fixing linting error
1 parent 1dd727f commit ce222f1

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

packages/auth/src/mfa/assertions/totp.test.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -228,12 +228,11 @@ describe('Testing signin Flow', () => {
228228
afterEach(mockFetch.tearDown);
229229

230230
it('should finalize mfa signin for totp', async () => {
231-
232-
totpSignInResponse = {
231+
totpSignInResponse = {
233232
verificationCode: '123456',
234233
idToken: 'final-id-token',
235234
refreshToken: 'refresh-token'
236-
} as any;
235+
} as any;
237236
assertion = TotpMultiFactorGenerator.assertionForSignIn(
238237
'enrollment-id',
239238
'123456'
@@ -259,11 +258,11 @@ describe('Testing signin Flow', () => {
259258

260259
it('should throw Firebase Error if enrollment-id is undefined', async () => {
261260
let _response: FinalizeMfaResponse;
262-
totpSignInResponse = {
261+
totpSignInResponse = {
263262
verificationCode: '123456',
264263
idToken: 'final-id-token',
265264
refreshToken: 'refresh-token'
266-
} as any;
265+
} as any;
267266
assertion = TotpMultiFactorGenerator.assertionForSignIn(
268267
undefined as any,
269268
'123456'
@@ -279,11 +278,11 @@ describe('Testing signin Flow', () => {
279278

280279
it('should throw Firebase Error if otp is undefined', async () => {
281280
let _response: FinalizeMfaResponse;
282-
totpSignInResponse = {
281+
totpSignInResponse = {
283282
verificationCode: '123456',
284283
idToken: 'final-id-token',
285284
refreshToken: 'refresh-token'
286-
} as any;
285+
} as any;
287286
assertion = TotpMultiFactorGenerator.assertionForSignIn(
288287
'enrollment-id',
289288
undefined as any

0 commit comments

Comments
 (0)