Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance crypto/sig.js coverage #17426

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
test: Fix typo sign -> verify
  • Loading branch information
Leko committed Dec 2, 2017
commit dabbdf990fc8978dd007116b2e6c3ad7eaf99f5d
2 changes: 1 addition & 1 deletion test/parallel/test-crypto-sign-verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const modSize = 1024;
{
const Verify = crypto.Verify;
const instance = Verify('SHA256');
assert.ok(instance instanceof Verify, 'call sign constructor without new');
assert.ok(instance instanceof Verify, 'call verify constructor without new');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

}

common.expectsError(
Expand Down