Skip to content
New issue

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

There is a pattern of failure in uuid comparisons. #535

Open
Masaya00 opened this issue Mar 28, 2025 · 0 comments
Open

There is a pattern of failure in uuid comparisons. #535

Masaya00 opened this issue Mar 28, 2025 · 0 comments

Comments

@Masaya00
Copy link

Thanks for creating a useful library.
I appreciate it very much!

I'd like to report a point of concern I had while using it, just to be safe.

Describe the bug
When using DeepDiff to compare sets containing uuid6.UUID objects, no differences are reported even when the sets have different numbers of elements. For example, comparing a set with one UUID versus a set with what appears to be two different UUIDs returns an empty diff. This behavior is unexpected because the additional element should be detected as a difference.

To Reproduce

import uuid6
from deepdiff import DeepDiff

_dummy_id_1: uuid6.UUID = uuid6.uuid7()
_dummy_id_2: uuid6.UUID = uuid6.uuid7()

diff = DeepDiff({_dummy_id_1}, {_dummy_id_1, _dummy_id_2})
print(diff)  # => {}
# Observe that the output is {}, indicating no differences detected.

Expected behavior
DeepDiff should identify that the second set contains an additional element (i.e. _dummy_id_2 is not present in the first set) and return a diff that reflects this difference.

OS, DeepDiff version and Python version (please complete the following information):

  • Python Version 3.12
  • DeepDiff Version 8.4.2

Additional context
I am using the uuid6 library, so maybe that could be the cause!
Sorry if that's the case!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant