diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-03-19 18:36:22 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-03-19 18:36:22 -0700 |
commit | 4278f35e892935787afb1db18ca8811fba0d18f7 (patch) | |
tree | 7e6860ef6d20ea18d8e9ed5398016d557dd12e7f /test | |
parent | 776c3e2b29f379c89187e3527d5f81757fdbc923 (diff) | |
download | node-new-4278f35e892935787afb1db18ca8811fba0d18f7.tar.gz |
Add support for Buffer to fs.write
Diffstat (limited to 'test')
-rw-r--r-- | test/pummel/test-tcp-pingpong.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/pummel/test-tcp-pingpong.js b/test/pummel/test-tcp-pingpong.js index 9a3266c967..73d36c82d9 100644 --- a/test/pummel/test-tcp-pingpong.js +++ b/test/pummel/test-tcp-pingpong.js @@ -52,6 +52,8 @@ function pingPongTest (port, host, on_complete) { }); client.addListener("data", function (data) { + puts('client got: ' + data); + assert.equal("PONG", data); count += 1; |