Skip to content

Commit

Permalink
Lint add missing semicolon to assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Jul 5, 2024
1 parent 9ca8a66 commit 1e2dbce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/assertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export function testJWK({curve}) {
curve
});
const jwk1 = await EcdsaMultikey.toJwk({keyPair});
expect(jwk1.d).to.not.exist
expect(jwk1.d).to.not.exist;
const keyPairImported = await EcdsaMultikey.fromJwk({jwk: jwk1});
const jwk2 = await EcdsaMultikey.toJwk({keyPair: keyPairImported});
expect(jwk1).to.eql(jwk2);
Expand Down

0 comments on commit 1e2dbce

Please sign in to comment.