Skip to content

Commit

Permalink
Reverted omitBy test to omit for Lodash 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantemple committed Jan 31, 2017
1 parent 7408f7c commit e4baa45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ImmutableObject/test-without.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ module.exports = function(config) {
TestUtils.assertIsDeeplyImmutable(result);
});

xit("works the same way as _.omitBy", function() {
var expected = _.omitBy(immutable, function (value, key) {
it("works the same way as _.omit", function() {
var expected = _.omit(immutable, function (value, key) {
return _.includes(keys, key);
});

Expand Down

0 comments on commit e4baa45

Please sign in to comment.