From 38651521a8649f113e851e9ea1a8e81eaf2f0db6 Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 27 Jan 2012 13:42:08 -0800 Subject: [PATCH] stdout ending test message correction --- test/simple/test-tty-stdout-end.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);