Skip to content

Commit

Permalink
Fix typo in merge test (lodash#4334)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrugg authored and jdalton committed Jun 24, 2019
1 parent 488e62b commit abde931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/merge.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'] });

Expand Down

0 comments on commit abde931

Please sign in to comment.