From ac1ffa2efe79a170189bfa0186e6ae7a3b4d361c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 12 Sep 2015 09:19:34 -0700 Subject: [PATCH] Cleanup `_.merge` tests. --- test/test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 29c0d828c..28a646d0b 100644 --- a/test/test.js +++ b/test/test.js @@ -12297,7 +12297,6 @@ assert.deepEqual(actual, new Foo(object)); actual = _.merge([new Foo], [object]); - assert.ok(actual[0] instanceof Foo); assert.deepEqual(actual, [new Foo(object)]); }); @@ -12309,7 +12308,7 @@ assert.deepEqual(actual, { 'a': 1 }); }); - QUnit.test('should skip `undefined` values in `source` arrays if a destination value exists', function(assert) { + QUnit.test('should skip `undefined` values in array sources if a destination value exists', function(assert) { assert.expect(2); var array = Array(3);