Skip to content

Commit 0a26272

Browse files
committed
Remove sanity check failure
1 parent cfb81a3 commit 0a26272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jasmine/tests/lib_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ describe('Test lib.js:', function() {
488488

489489
it('unpacks top-level paths', function() {
490490
var input = {'marker.color': 'red', 'marker.size': [1, 2, 3]};
491-
var expected = {marker: {color: 'red', size: [1, 2, 4]}};
491+
var expected = {marker: {color: 'red', size: [1, 2, 3]}};
492492
expect(Lib.expandObjectPaths(input)).toLooseDeepEqual(expected);
493493
});
494494

0 commit comments

Comments
 (0)