diff options
author | Colton Baker <github@netrefuge.net> | 2011-10-04 18:08:18 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-10-05 18:51:06 -0700 |
commit | 87286cc7371886d9856edf424785aaa890ba05a9 (patch) | |
tree | 0a3e93be28b8ebb62d9b774919d29b2c1600fa46 /test/pummel/test-tls-throttle.js | |
parent | 627f379f2273341426ab3d5cb7eb4d5c148d500a (diff) | |
download | node-new-87286cc7371886d9856edf424785aaa890ba05a9.tar.gz |
Fixed a lot of jslint errors.
Fixes #1831
Diffstat (limited to 'test/pummel/test-tls-throttle.js')
-rw-r--r-- | test/pummel/test-tls-throttle.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/pummel/test-tls-throttle.js b/test/pummel/test-tls-throttle.js index cd749d511c..c3c194f710 100644 --- a/test/pummel/test-tls-throttle.js +++ b/test/pummel/test-tls-throttle.js @@ -33,7 +33,7 @@ var fs = require('fs'); var body = ''; process.stdout.write('build body...'); -for (var i = 0; i < 1024*1024; i++) { +for (var i = 0; i < 1024 * 1024; i++) { body += 'hello world\n'; } process.stdout.write('done\n'); @@ -62,7 +62,7 @@ server.listen(common.PORT, function() { recvCount += d.length; client.pause(); - process.nextTick(function () { + process.nextTick(function() { client.resume(); }); }); @@ -82,7 +82,7 @@ function displayCounts() { } -var timeout = setTimeout(displayCounts, 10*1000); +var timeout = setTimeout(displayCounts, 10 * 1000); process.on('exit', function() { |