Skip to content

Commit 8ee60e7

Browse files
committed
Fix linter
1 parent 5049397 commit 8ee60e7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages-exp/auth-exp/test/integration/flows/idp.local.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('Integration test: headless IdP', () => {
5858
email = randomEmail();
5959
oauthIdToken = JSON.stringify({
6060
email,
61-
email_verified: true,
61+
'email_verified': true,
6262
sub: `oauthidp--${email}--oauthidp`
6363
});
6464
});
@@ -173,7 +173,7 @@ describe('Integration test: headless IdP', () => {
173173
JSON.stringify({
174174
sub: googleEmail,
175175
email: googleEmail,
176-
email_verified: true
176+
'email_verified': true
177177
})
178178
);
179179

@@ -236,16 +236,16 @@ describe('Integration test: headless IdP', () => {
236236
const googleCredential = GoogleAuthProvider.credential(
237237
JSON.stringify({
238238
sub: email,
239-
email: email,
240-
email_verified: true
239+
email,
240+
'email_verified': true
241241
})
242242
);
243243

244244
const githubCredential = GithubAuthProvider.credential(
245245
JSON.stringify({
246246
sub: email,
247-
email: email,
248-
email_verified: true
247+
email,
248+
'email_verified': true
249249
})
250250
);
251251

0 commit comments

Comments
 (0)