Skip to content

Commit b54a402

Browse files
committed
fix lint errors
1 parent d258da4 commit b54a402

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/auth/src/core/providers/oauth.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import { OAuthCredential } from '../credentials/oauth';
3030
import sinon from 'sinon';
3131

3232
describe('core/providers/oauth', () => {
33-
3433
const callMethod = (tokenResponse: any) => {
3534
return (OAuthProvider as any).oauthCredentialFromTaggedObject({
3635
_tokenResponse: tokenResponse
@@ -199,7 +198,7 @@ describe('core/providers/oauth', () => {
199198
it('returns null if providerId is missing', () => {
200199
const result = callMethod({
201200
oauthIdToken: 'id-token',
202-
oauthAccessToken: 'access-token',
201+
oauthAccessToken: 'access-token'
203202
// providerId is missing
204203
});
205204
expect(result).to.be.null;

0 commit comments

Comments
 (0)