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
removed unnecessary type property
  • Loading branch information
Josh-Broomfield committed Sep 28, 2018
commit 56d25eabd5f0025d63c48f576a63e86b3262c234
3 changes: 1 addition & 2 deletions test/parallel/test-child-process-disconnect.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ if (process.argv[2] === 'child') {
assert.throws(
child.disconnect.bind(child),
{
code: 'ERR_IPC_DISCONNECTED',
type: Error
code: 'ERR_IPC_DISCONNECTED'
});
return;
}
Expand Down