mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Fix typo in merge test (#4334)
This commit is contained in:
committed by
John-David Dalton
parent
488e62bd79
commit
abde9319fd
@@ -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'] });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user