diff --git a/test/simple/test-tty-wrap.js b/test/simple/test-tty-wrap.js index da661c4018..610b92b43f 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); }); - -