diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-12-04 15:20:34 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-12-04 15:58:50 -0800 |
commit | a0159b4b295f69e5653ef96d88de579746dcfdc8 (patch) | |
tree | 3e8a2536784c09bd4fb7c6e6d88ecff2dab20c7b /test/simple/test-pipe-head.js | |
parent | fbdff52b447efd21c5a552bc47a113ffbe6e4d95 (diff) | |
download | nodejs-a0159b4b295f69e5653ef96d88de579746dcfdc8.tar.gz nodejs-a0159b4b295f69e5653ef96d88de579746dcfdc8.tar.bz2 nodejs-a0159b4b295f69e5653ef96d88de579746dcfdc8.zip |
Fix global leaks
Diffstat (limited to 'test/simple/test-pipe-head.js')
-rw-r--r-- | test/simple/test-pipe-head.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-pipe-head.js b/test/simple/test-pipe-head.js index 3dbef16d9..51d765998 100644 --- a/test/simple/test-pipe-head.js +++ b/test/simple/test-pipe-head.js @@ -1,5 +1,5 @@ -common = require("../common"); -assert = common.assert +var common = require('../common'); +var assert = require('assert'); exec = require('child_process').exec; join = require('path').join; |