diff --git a/test/test.js b/test/test.js index c50a34a79..1cb33c1c0 100644 --- a/test/test.js +++ b/test/test.js @@ -8267,7 +8267,7 @@ delete stringProto.b; }); - test('should work with a predicate argument', 1, function() { + test('should work with a `predicate` argument', 1, function() { var actual = _.omit(object, function(num) { return num != 2; }); @@ -8956,7 +8956,7 @@ deepEqual(_.pick('', 'slice'), { 'slice': ''.slice }); }); - test('should work with a predicate argument', 1, function() { + test('should work with a `predicate` argument', 1, function() { var actual = _.pick(object, function(num) { return num != 2; });