From 99b0094dcd10742a4b878177eae8dee3e3f41a00 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 7 Sep 2015 22:14:20 -0700 Subject: [PATCH] Minor code style nit in tests. [ci skip] --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 2254a2474..b21e16cfa 100644 --- a/test/test.js +++ b/test/test.js @@ -7542,7 +7542,7 @@ deepEqual(actual, expected); - objects = [{ 'a': { 'b': 1 } }, { 'a':{ 'b':1, 'c': 1 } }, { 'a': { 'b': 1, 'c': undefined } }]; + objects = [{ 'a': { 'b': 1 } }, { 'a':{ 'b': 1, 'c': 1 } }, { 'a': { 'b': 1, 'c': undefined } }]; source = { 'a': { 'c': undefined } }; actual = _.map(objects, predicate); @@ -9807,7 +9807,7 @@ deepEqual(actual, expected); - objects = [{ 'a': { 'b': 1 } }, { 'a': { 'b':1, 'c': 1 } }, { 'a': { 'b': 1, 'c': undefined } }]; + objects = [{ 'a': { 'b': 1 } }, { 'a': { 'b': 1, 'c': 1 } }, { 'a': { 'b': 1, 'c': undefined } }]; actual = _.map(objects, _.matches({ 'a': { 'c': undefined } })); deepEqual(actual, expected);