From 1a1406c80e2b8bf2cdea35167d49ecc498dd21dd Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 11 Jun 2009 13:43:00 +0200 Subject: [PATCH] Add 'localhost' to connect() to test for issue 3 --- test/test-tcp-pingpong.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-tcp-pingpong.js b/test/test-tcp-pingpong.js index 85e01a83ff7..3f35b4cd4fc 100644 --- a/test/test-tcp-pingpong.js +++ b/test/test-tcp-pingpong.js @@ -69,7 +69,7 @@ function onLoad() { }; assertEquals("closed", client.readyState); - client.connect(port); + client.connect(port, "localhost"); } function onExit () {