Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis authored Aug 13, 2019
1 parent d3468e7 commit 44bf4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/JWT-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ describe('createJWT()', () => {

it('creates a JWT with expiry in 10000 seconds', () => {
return createJWT(
{ requested: ['name', 'phone'], nbf: Math.floor(new Date().getTime()/1000) },
{ requested: ['name', 'phone'], nbf: Math.floor(new Date().getTime() / 1000) },
{ alg, issuer: did, signer, expiresIn: 10000 }
).then(jwt => {
const { payload } = decodeJWT(jwt)
Expand Down

0 comments on commit 44bf4f7

Please sign in to comment.