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
Update test-worker.js
  • Loading branch information
nornagon authored Oct 29, 2019
commit 96712bff7cfd5dc2770f0034f9c7b8bf9541ce90
2 changes: 1 addition & 1 deletion test/addons/dlopen-ping-pong/test-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ require(bindingPath);
new Worker(`require(${JSON.stringify(bindingPath)})`, { eval: true })
.on('error', common.mustCall((err) => {
assert.strictEqual(err.constructor, Error);
assert.strictEqual(err.message, `Module did not self-register: '${bindingPath}.node'.`);
assert.strictEqual(err.message, `Module did not self-register: '${bindingPath}'.`);
}));