Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: use + to break strings and fix indent
  • Loading branch information
Leko committed Dec 2, 2017
commit fc3ffc925d858638d0f13d0cd093c287d4404ca2
8 changes: 4 additions & 4 deletions test/parallel/test-crypto-sign-verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const modSize = 1024;
{
const Sign = crypto.Sign;
const instance = Sign('SHA256');
assert.ok(instance instanceof Sign, 'Sign is expected to return a new \
instance when called without `new` keyword');
assert.ok(instance instanceof Sign, 'Sign is expected to return a new ' +
'instance when called without `new`');
}

{
const Verify = crypto.Verify;
const instance = Verify('SHA256');
assert.ok(instance instanceof Verify, 'Verify is expected to return a new \
instance when called without `new` keyword');
assert.ok(instance instanceof Verify, 'Verify is expected to return a new ' +
'instance when called without `new`');
}

common.expectsError(
Expand Down