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
fixup: fixing lint line length
  • Loading branch information
kaltepeter committed Oct 12, 2018
commit e0098f96b7c815e8e6c833170cfbaf2fa7b89b63
3 changes: 2 additions & 1 deletion test/parallel/test-vm-module-errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ async function checkModuleState() {
await m.evaluate(false);
}, {
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "options" argument must be of type Object. Received type boolean'
message: 'The "options" argument must be of type Object. ' +
'Received type boolean'
});

await expectsRejection(async () => {
Expand Down