mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Fix test title typos. [ci skip]
This commit is contained in:
@@ -3674,7 +3674,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should with only secondary arguments', 1, function() {
|
test('should work with only secondary arguments', 1, function() {
|
||||||
deepEqual(_.intersection(null, [1, 3, 2], [2, 1]), [1, 2]);
|
deepEqual(_.intersection(null, [1, 3, 2], [2, 1]), [1, 2]);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -8858,7 +8858,7 @@
|
|||||||
deepEqual(actual, [1, 3, 2, [5], [4]]);
|
deepEqual(actual, [1, 3, 2, [5], [4]]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should with only secondary arguments', 1, function() {
|
test('should work with only secondary arguments', 1, function() {
|
||||||
var actual = _.union(null, [1, 3, 2], [5, 4]);
|
var actual = _.union(null, [1, 3, 2], [5, 4]);
|
||||||
deepEqual(actual, [1, 3, 2, 5, 4]);
|
deepEqual(actual, [1, 3, 2, 5, 4]);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user