Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-06-04 17:41:40 +0400
committerRyan <ry@tinyclouds.org>2009-06-04 17:44:38 +0400
commitc226f8176827067a0c1404655da1295f62cf0083 (patch)
tree5990c855dff23ccda9c551083c778ac100af950b /test_client.js
parentc457b829e29574e9aeb7a71a6197b08deb06d485 (diff)
Fix HTTP client output bug.
Diffstat (limited to 'test_client.js')
-rw-r--r--test_client.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_client.js b/test_client.js
index 56e0137805f..02ba11956cc 100644
--- a/test_client.js
+++ b/test_client.js
@@ -21,8 +21,8 @@ req.finish(function (res) {
});
setTimeout(function () {
- var req2 = c.get("/something/else", []);
- puts("start req2");
+ var req2 = c.get("/something/else");
+ //node.debug("start req2");
req2.finish(function (res) {
puts("response 2: " + res.statusCode.toString());