Typo nit in _.uniq tests.

This commit is contained in:
John-David Dalton
2014-08-11 09:24:56 -07:00
parent faac630001
commit 6dc0cf0c44

View File

@@ -11053,11 +11053,11 @@
deepEqual(_.uniq(array), [1, 2, 3]);
});
test('should treat object instances as uniq', 1, function() {
test('should treat object instances as unique', 1, function() {
deepEqual(_.uniq(objects), objects);
});
test('should not treat `NaN` as uniq', 1, function() {
test('should not treat `NaN` as unique', 1, function() {
deepEqual(_.uniq([1, NaN, 3, NaN]), [1, NaN, 3]);
});