Fix test title typos. [ci skip]

This commit is contained in:
John-David Dalton
2014-03-26 02:48:57 -07:00
parent 5e0d48b40f
commit c099d60393

View File

@@ -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]);
});
@@ -8858,7 +8858,7 @@
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]);
deepEqual(actual, [1, 3, 2, 5, 4]);
});