From abde9319fdd39e8d2f3ab70663fc41a323a22ef0 Mon Sep 17 00:00:00 2001 From: Youcef Mammar Date: Mon, 24 Jun 2019 18:17:18 +0200 Subject: [PATCH] Fix typo in merge test (#4334) --- test/merge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/merge.js b/test/merge.js index 097bfb493a..2ecd7c78c7 100644 --- a/test/merge.js +++ b/test/merge.js @@ -325,7 +325,7 @@ describe('merge', function() { assert.deepStrictEqual(actual, { 'a': [] }); }); - it('should not convert strings to arrays when merging arrays of `source`', function() { + it('should convert strings to arrays when merging arrays of `source`', function() { var object = { 'a': 'abcde' }, actual = merge(object, { 'a': ['x', 'y', 'z'] });