Move from global to Env

This commit is contained in:
Colin O'Byrne and JR Boyens
2013-07-22 14:29:21 -07:00
parent f2306729cd
commit 18c30566bd
3 changed files with 7 additions and 7 deletions

View File

@@ -111,7 +111,7 @@ describe("matchersUtil", function() {
});
it("passes for equivalent frozen objects (GitHub issue #266)", function() {
if (jasmine.getGlobal().ieVersion < 9) { return; }
if (jasmine.getEnv().ieVersion < 9) { return; }
var a = { foo: 1 },
b = {foo: 1 };
@@ -216,4 +216,4 @@ describe("matchersUtil", function() {
expect(message).toEqual("Expected 'foo' to bar 'quux', 'corge'.");
});
});
});
});