diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-12-04 16:11:57 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-12-04 16:36:21 -0800 |
commit | 92789b16e594f806dbdaee1a65c1d8440b96fc65 (patch) | |
tree | 77c810b73acaa335d47763f97606c6bd2fd06620 /test/message/hello_world.js | |
parent | a0159b4b295f69e5653ef96d88de579746dcfdc8 (diff) | |
download | node-new-92789b16e594f806dbdaee1a65c1d8440b96fc65.tar.gz |
Fix global leaks
Diffstat (limited to 'test/message/hello_world.js')
-rw-r--r-- | test/message/hello_world.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/message/hello_world.js b/test/message/hello_world.js index 6f60c4cc0e..996e08d51a 100644 --- a/test/message/hello_world.js +++ b/test/message/hello_world.js @@ -1,4 +1,4 @@ -common = require('../common'); -assert = common.assert; +var common = require('../common'); +var assert = require('assert'); console.log('hello world'); |