Skip to content

Commit

Permalink
Merge pull request #196 from ryantemple/master
Browse files Browse the repository at this point in the history
Reverted omitBy test to omit for Lodash 3.10
  • Loading branch information
Richard Feldman authored Feb 12, 2017
2 parents 7408f7c + e4baa45 commit c85562d
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 c85562d

Please sign in to comment.