Minor space nit. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-25 13:50:33 -07:00
parent 90f95306f9
commit 1740ee91da

View File

@@ -24770,7 +24770,7 @@
QUnit.test('should work with a `comparator` argument', function(assert) {
assert.expect(1);
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }],
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }],
actual = _.uniqWith(objects, lodashStable.isEqual);
assert.deepEqual(actual, [objects[0], objects[1]]);