summaryrefslogtreecommitdiff
path: root/test/simple/test-exception-handler.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-12-04 15:20:34 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-12-04 15:58:50 -0800
commita0159b4b295f69e5653ef96d88de579746dcfdc8 (patch)
tree3e8a2536784c09bd4fb7c6e6d88ecff2dab20c7b /test/simple/test-exception-handler.js
parentfbdff52b447efd21c5a552bc47a113ffbe6e4d95 (diff)
downloadnode-new-a0159b4b295f69e5653ef96d88de579746dcfdc8.tar.gz
Fix global leaks
Diffstat (limited to 'test/simple/test-exception-handler.js')
-rw-r--r--test/simple/test-exception-handler.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-exception-handler.js b/test/simple/test-exception-handler.js
index f1227e80a1..880514c665 100644
--- a/test/simple/test-exception-handler.js
+++ b/test/simple/test-exception-handler.js
@@ -1,5 +1,5 @@
-common = require("../common");
-assert = common.assert
+var common = require('../common');
+var assert = require('assert');
var MESSAGE = 'catch me if you can';
var caughtException = false;