Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-01-28 01:42:08 +0400
committerisaacs <i@izs.me>2012-01-28 01:42:49 +0400
commit38651521a8649f113e851e9ea1a8e81eaf2f0db6 (patch)
treeaf5d5e84a324c7fdc8aad1a8ff9fc78fa0e503ee /test
parent8a413b076eb3ad83e4445d54e78e238d1d09912c (diff)
stdout ending test message correction
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-tty-stdout-end.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/simple/test-tty-stdout-end.js b/test/simple/test-tty-stdout-end.js
index 7c7f7feb2ba..1fc27906834 100644
--- a/test/simple/test-tty-stdout-end.js
+++ b/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);