Skip to content

Commit

Permalink
test: use logical and not or in abort-fatal-error
Browse files Browse the repository at this point in the history
  • Loading branch information
tjfontaine committed Jan 28, 2014
1 parent 2f5e77f commit 114bff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/simple/test-abort-fatal-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ exec(cmdline, function(err, stdout, stderr) {
return;
}

if (err.code !== 134 || err.signal !== 'SIGABRT') {
if (err.code !== 134 && err.signal !== 'SIGABRT') {
console.log(stdout);
console.log(stderr);
console.log(err);
Expand Down

0 comments on commit 114bff4

Please sign in to comment.