From 1740ee91dafca6c2b40a998e46f61c5451d5e1f7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 25 May 2016 13:50:33 -0700 Subject: [PATCH] Minor space nit. [ci skip] --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 8beac98b0..b557a215e 100644 --- a/test/test.js +++ b/test/test.js @@ -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]]);