Define |global| object in different way in tests

redux
David Majda 14 years ago
parent f787793848
commit b105c43756

@ -1,6 +1,4 @@
(function() { (function(global) {
var global = this;
/* ===== Helpers ===== */ /* ===== Helpers ===== */
@ -634,4 +632,4 @@ test("nested comments", function() {
); );
}); });
})(); })(this);

@ -1,6 +1,4 @@
(function() { (function(global) {
var global = this;
/* ===== Helpers ===== */ /* ===== Helpers ===== */
@ -610,4 +608,4 @@ test("parses whitespace", function() {
grammarParserParses('start =\u3000"abcd"', simpleGrammar); grammarParserParses('start =\u3000"abcd"', simpleGrammar);
}); });
})(); })(this);

Loading…
Cancel
Save