Skip to content

Commit a4fc483

Browse files
committed
fix nit
1 parent 1ed8064 commit a4fc483

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec/Adapters/Auth/line.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('LineAdapter', function () {
1616
const jwtClaims = {
1717
iss: 'https://access.line.me',
1818
aud: 'validClientId',
19-
exp: Date.now() + 1000,
19+
exp: Math.floor(Date.now() / 1000) + 3600,
2020
sub: 'mockUserId',
2121
...claims,
2222
};

0 commit comments

Comments
 (0)