Skip to content

Commit

Permalink
test: revert cf50305
Browse files Browse the repository at this point in the history
PR-URL: nodejs#4410

As @Trott points out in nodejs#4364 commit cf50305 is currently
breaking CI. This commit reverts the changes.
  • Loading branch information
Myles Borins committed Dec 24, 2015
1 parent 1c5d4f2 commit 9500a08
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/parallel/test-domain-top-level-error-handler-throw.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,10 @@ if (process.argv[2] === 'child') {
stderrOutput += data.toString();
});

child.on('close', function onChildClosed() {
child.on('exit', function onChildExited(exitCode, signal) {
assert(stderrOutput.indexOf(domainErrHandlerExMessage) !== -1);
assert(stderrOutput.indexOf(internalExMessage) === -1);
});

child.on('exit', function onChildExited(exitCode, signal) {
var expectedExitCode = 7;
var expectedSignal = null;

Expand Down

0 comments on commit 9500a08

Please sign in to comment.