aboutsummaryrefslogtreecommitdiff
path: root/test/pummel/test-net-many-clients.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-12-04 16:11:57 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-12-04 16:36:21 -0800
commit92789b16e594f806dbdaee1a65c1d8440b96fc65 (patch)
tree77c810b73acaa335d47763f97606c6bd2fd06620 /test/pummel/test-net-many-clients.js
parenta0159b4b295f69e5653ef96d88de579746dcfdc8 (diff)
downloadandroid-node-v8-92789b16e594f806dbdaee1a65c1d8440b96fc65.tar.gz
android-node-v8-92789b16e594f806dbdaee1a65c1d8440b96fc65.tar.bz2
android-node-v8-92789b16e594f806dbdaee1a65c1d8440b96fc65.zip
Fix global leaks
Diffstat (limited to 'test/pummel/test-net-many-clients.js')
-rw-r--r--test/pummel/test-net-many-clients.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/pummel/test-net-many-clients.js b/test/pummel/test-net-many-clients.js
index ab42762f7f..b59808e2e8 100644
--- a/test/pummel/test-net-many-clients.js
+++ b/test/pummel/test-net-many-clients.js
@@ -1,6 +1,7 @@
var common = require('../common');
var assert = require('assert');;
-net = require('net');
+var net = require('net');
+
// settings
var bytes = 1024 * 40;
var concurrency = 100;