We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug DeepDiff parameter "ignore_string_case" does not ignore diff which are same but in different case, when set to True.
To Reproduce data_1 = { 'User' : { 'AboutMe' : 1, 'ALIAS' : 1 } } data_2 = { 'User' : { 'Alias' : 1, 'AboutMe' : 1 } } DeepDiff(data_1, data_2, ignore_string_case = True)
Buggy Output = {'dictionary_item_added': [root['User']['Alias']], 'dictionary_item_removed': [root['User']['ALIAS']]}
Expected behavior Expected Output = {}
OS, DeepDiff version and Python version (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered:
Hi @TheAutomationWizard Thanks for reporting the bug. I will fix it when I have a chance. PR's are very welcome too.
Sorry, something went wrong.
dict key ignore case - fixes #341
fced607
This issue is resolved in the dev branch. I will keep you posted when I cut a release. Thanks
seperman
No branches or pull requests
Describe the bug
DeepDiff parameter "ignore_string_case" does not ignore diff which are same but in different case, when set to True.
To Reproduce
data_1 = { 'User' : { 'AboutMe' : 1, 'ALIAS' : 1 } }
data_2 = { 'User' : { 'Alias' : 1, 'AboutMe' : 1 } }
DeepDiff(data_1, data_2, ignore_string_case = True)
Buggy Output = {'dictionary_item_added': [root['User']['Alias']], 'dictionary_item_removed': [root['User']['ALIAS']]}
Expected behavior
Expected Output = {}
OS, DeepDiff version and Python version (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: