Browse Source

test: fix issues for space-in-parens ESLint rule

PR-URL: https://github.com/nodejs/node/pull/4753
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
process-exit-stdio-flushing
Roman Reiss 9 years ago
parent
commit
647861befb
  1. 2
      test/parallel/test-process-binding.js

2
test/parallel/test-process-binding.js

@ -12,7 +12,7 @@ assert.throws(
assert.doesNotThrow(function() { assert.doesNotThrow(function() {
process.binding('buffer'); process.binding('buffer');
}, function(err) { }, function(err) {
if ( (err instanceof Error) ) { if (err instanceof Error) {
return true; return true;
} }
}, 'unexpected error'); }, 'unexpected error');

Loading…
Cancel
Save