From 4de274cbee902cc17608ca9507ffd45fab2b706e Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 30 Nov 2012 18:21:01 -0800 Subject: [PATCH] test: TTY only has writeBuffer(), not write() This test is only passing because it's skipped normally. --- test/simple/test-tty-wrap.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/simple/test-tty-wrap.js b/test/simple/test-tty-wrap.js index da661c401..610b92b43 100644 --- a/test/simple/test-tty-wrap.js +++ b/test/simple/test-tty-wrap.js @@ -33,20 +33,16 @@ if (isTTY(1) == false) { var handle = new TTY(1); var callbacks = 0; -var req1 = handle.write(Buffer('hello world\n')); +var req1 = handle.writeBuffer(Buffer('hello world\n')); req1.oncomplete = function() { callbacks++; }; -var req2 = handle.write(Buffer('hello world\n')); +var req2 = handle.writeBuffer(Buffer('hello world\n')); req2.oncomplete = function() { callbacks++; }; -handle.close(); - process.on('exit', function() { assert.equal(2, callbacks); }); - -