-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from surefyresystems/iterable_compare_func_fixes
Fix for iterable moved items what are found with iterable_compare_func
- Loading branch information
Showing
3 changed files
with
93 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,59 @@ | ||
{ | ||
"dictionary_item_added": [ | ||
"root['Cars'][3]['dealers']" | ||
], | ||
"dictionary_item_removed": [ | ||
"root['Cars'][3]['production']" | ||
], | ||
"values_changed": { | ||
"root['Cars'][3]['model']": { | ||
"new_value": "Supra", | ||
"old_value": "supra" | ||
} | ||
"dictionary_item_added": [ | ||
"root['Cars'][3]['dealers']" | ||
], | ||
"dictionary_item_removed": [ | ||
"root['Cars'][3]['production']" | ||
], | ||
"values_changed": { | ||
"root['Cars'][2]['dealers'][0]['quantity']": { | ||
"new_value": 50, | ||
"old_value": 20 | ||
}, | ||
"iterable_item_added": { | ||
"root['Cars'][0]": { | ||
"id": "7", | ||
"make": "Toyota", | ||
"model": "8Runner" | ||
} | ||
"root['Cars'][1]['model_numbers'][2]": { | ||
"new_value": 3, | ||
"old_value": 4 | ||
}, | ||
"root['Cars'][3]['model']": { | ||
"new_value": "Supra", | ||
"old_value": "supra" | ||
} | ||
}, | ||
"iterable_item_added": { | ||
"root['Cars'][2]['dealers'][1]": { | ||
"id": 200, | ||
"address": "200 Fake St", | ||
"quantity": 10 | ||
}, | ||
"root['Cars'][1]['model_numbers'][3]": 4, | ||
"root['Cars'][0]": { | ||
"id": "7", | ||
"make": "Toyota", | ||
"model": "8Runner" | ||
} | ||
}, | ||
"iterable_item_removed": { | ||
"root['Cars'][2]['dealers'][0]": { | ||
"id": 103, | ||
"address": "103 Fake St", | ||
"quantity": 50 | ||
}, | ||
"iterable_item_removed": { | ||
"root['Cars'][1]": { | ||
"id": "2", | ||
"make": "Toyota", | ||
"model": "Highlander", | ||
"dealers": [ | ||
{ | ||
"id": 123, | ||
"address": "123 Fake St", | ||
"quantity": 50 | ||
}, | ||
{ | ||
"id": 125, | ||
"address": "125 Fake St", | ||
"quantity": 20 | ||
} | ||
] | ||
"root['Cars'][1]": { | ||
"id": "2", | ||
"make": "Toyota", | ||
"model": "Highlander", | ||
"dealers": [ | ||
{ | ||
"id": 123, | ||
"address": "123 Fake St", | ||
"quantity": 50 | ||
}, | ||
{ | ||
"id": 125, | ||
"address": "125 Fake St", | ||
"quantity": 20 | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters