Get the casing right for IE8

This commit is contained in:
Gregg Van Hove
2017-07-18 21:51:32 -07:00
parent f71218a44b
commit 31164106e5

View File

@@ -263,9 +263,9 @@ describe("jasmineUnderTest.pp", function () {
};
if (jasmine.getEnv().ieVersion < 9) {
expect(jasmineUnderTest.pp(obj)).toEqual("Object({ toString: 'foo' })");
} else {
expect(jasmineUnderTest.pp(obj)).toEqual("Object({ })");
} else {
expect(jasmineUnderTest.pp(obj)).toEqual("Object({ toString: 'foo' })");
}
});