Cleanup test titles.

This commit is contained in:
John-David Dalton
2014-10-20 22:18:10 -07:00
parent 55911eac7a
commit 2dcda2487a

View File

@@ -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;
});