Define |global| object in different way in tests
This commit is contained in:
parent
f787793848
commit
b105c43756
|
@ -1,6 +1,4 @@
|
|||
(function() {
|
||||
|
||||
var global = this;
|
||||
(function(global) {
|
||||
|
||||
/* ===== Helpers ===== */
|
||||
|
||||
|
@ -634,4 +632,4 @@ test("nested comments", function() {
|
|||
);
|
||||
});
|
||||
|
||||
})();
|
||||
})(this);
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
(function() {
|
||||
|
||||
var global = this;
|
||||
(function(global) {
|
||||
|
||||
/* ===== Helpers ===== */
|
||||
|
||||
|
@ -610,4 +608,4 @@ test("parses whitespace", function() {
|
|||
grammarParserParses('start =\u3000"abcd"', simpleGrammar);
|
||||
});
|
||||
|
||||
})();
|
||||
})(this);
|
||||
|
|
Loading…
Reference in a new issue