You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When ignoring a subkey, the expectation is that it will be ignored in all cases, however that is not reality. If an object is added/removed instead of changed and a subkey within the object is ignored, that subkey is not ignored/included in the diff
Package version (if known):
Describe the bug
When ignoring a subkey, the expectation is that it will be ignored in all cases, however that is not reality. If an object is added/removed instead of changed and a subkey within the object is ignored, that subkey is not ignored/included in the diff
Steps to Reproduce
Example code:
Result:
Expected behavior
Expecting the diff list to not include explicitly ignored keys (i.e.
[('change', 'a', ('a', 'A')), ('change', 'b', ({'cc': 'cc'}, None))]
and not
[('change', 'a', ('a', 'A')), ('change', 'b', ({'bb': 'bb', 'cc': 'cc'}, None))]
The text was updated successfully, but these errors were encountered: