summaryrefslogtreecommitdiff
path: root/test/disabled/test-http-big-proxy-responses.js
diff options
context:
space:
mode:
authorHerbert Vojčík <herby@mailbox.sk>2010-08-17 12:59:36 +0200
committerRyan Dahl <ry@tinyclouds.org>2010-08-17 08:08:36 -0700
commit32e309440f1819d8c1e1ee0a91dc853b587da82d (patch)
tree947a9da401b45c925e95151fb057690c2360aa20 /test/disabled/test-http-big-proxy-responses.js
parent6744e59e461cc200a1c135c99450b2800c21b5e9 (diff)
downloadnode-new-32e309440f1819d8c1e1ee0a91dc853b587da82d.tar.gz
Fix of 'sys.common.debug' calls in tests.
Diffstat (limited to 'test/disabled/test-http-big-proxy-responses.js')
-rw-r--r--test/disabled/test-http-big-proxy-responses.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/disabled/test-http-big-proxy-responses.js b/test/disabled/test-http-big-proxy-responses.js
index b5cba80cfa..d569b76d40 100644
--- a/test/disabled/test-http-big-proxy-responses.js
+++ b/test/disabled/test-http-big-proxy-responses.js
@@ -64,7 +64,7 @@ function call_chargen(list) {
if (list.length > 0) {
var len = list.shift();
- sys.common.debug("calling chargen for " + len + " chunks.");
+ common.debug("calling chargen for " + len + " chunks.");
var recved = 0;
@@ -79,7 +79,7 @@ function call_chargen(list) {
res.addListener('end', function() {
assert.ok(recved <= (len*chunk.length));
- sys.common.debug("end for " + len + " chunks.");
+ common.debug("end for " + len + " chunks.");
call_chargen(list);
});