Skip to content

Commit 0a1d94a

Browse files
committed
chore: fix lint in app-check.spec.ts
1 parent 05586a3 commit 0a1d94a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit/app-check/app-check.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ describe('AppCheck', () => {
193193
.then((token) => {
194194
expect(token.token).equals('token');
195195
expect(token.ttlMillis).equals(3000);
196-
expect(stub).to.have.been.calledOnce.and.calledWith(sinon.match.string, APP_ID, { limitedUse: true, jti: 'test-jti' });
196+
expect(stub).to.have.been.calledOnce.and.calledWith(
197+
sinon.match.string, APP_ID, { limitedUse: true, jti: 'test-jti' });
197198
});
198199
});
199200
});

0 commit comments

Comments
 (0)