From 2dcda2487a158e990fb9d537d082f561aaae9810 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 20 Oct 2014 22:18:10 -0700 Subject: [PATCH] Cleanup test titles. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; });