Browse Source

stdout ending test message correction

v0.7.4-release
isaacs 13 years ago
parent
commit
38651521a8
  1. 2
      test/simple/test-tty-stdout-end.js

2
test/simple/test-tty-stdout-end.js

@ -30,7 +30,7 @@ try {
} catch (e) {
exceptionCaught = true;
assert.ok(common.isError(e));
assert.equal('process.stdout cannot be closed', e.message);
assert.equal('process.stdout cannot be closed.', e.message);
}
assert.ok(exceptionCaught);

Loading…
Cancel
Save