Fix spec for phantomjs

This commit is contained in:
Aaron Jensen 2015-08-05 08:32:02 -07:00
parent ad381207a9
commit b0328ab72d

View File

@ -26,6 +26,6 @@ describe('u.withDefault', () => {
});
it('freezes the result', () => {
expect(Object.isFrozen(u.withDefault({}, 'a')(undefined))).to.be.true;
expect(Object.isFrozen(u.withDefault({}, { a: 1 })(undefined))).to.be.true;
});
});