Fix typo in merge test (#4334)

This commit is contained in:
Youcef Mammar
2019-06-24 18:17:18 +02:00
committed by John-David Dalton
parent 488e62bd79
commit abde9319fd

View File

@@ -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'] });