From cca15e8e33e94258d8b881786c27d461d5488982 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Mon, 15 Oct 2012 14:51:43 -0700 Subject: [PATCH] test: disable global variable check for "test-repl-options.js" Previously, the "global" mode of REPLs was broken when created after another non-global REPL (they would end up sharing the same context). Now that "global" mode is fixed for that case (b1e78cef097c682ed63528ad7efe294b18a9fb1d), this test case gets its global scope modified with "module" and other REPL-specific properties, so disable the global check. --- test/simple/test-repl-options.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/simple/test-repl-options.js b/test/simple/test-repl-options.js index c3a83aeb00a..d3fcd588ee8 100644 --- a/test/simple/test-repl-options.js +++ b/test/simple/test-repl-options.js @@ -24,6 +24,8 @@ var common = require('../common'), Stream = require('stream'), repl = require('repl'); +common.globalCheck = false; + // create a dummy stream that does nothing var stream = new Stream(); stream.write = stream.pause = stream.resume = function(){};