mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Cleanup test titles.
This commit is contained in:
@@ -8267,7 +8267,7 @@
|
|||||||
delete stringProto.b;
|
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) {
|
var actual = _.omit(object, function(num) {
|
||||||
return num != 2;
|
return num != 2;
|
||||||
});
|
});
|
||||||
@@ -8956,7 +8956,7 @@
|
|||||||
deepEqual(_.pick('', 'slice'), { 'slice': ''.slice });
|
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) {
|
var actual = _.pick(object, function(num) {
|
||||||
return num != 2;
|
return num != 2;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user