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
In the following example we have two indentical sets that aren’t equal from assertEquals perspective:
assertEquals
val set1 = persistentSetOf(-486539264, 16777216, 0, 67108864) val builder = set1.builder() assertEquals(set1, builder) assertEquals(set1, builder.build()) assertEquals(set1, builder.build().toSet()) val set2 = set1.remove(0) builder.remove(0) assertEquals(set2, builder.build().toSet()) assertEquals(set2, builder.build()) // fails, expected to pass
Bug is found by fuzzing team @ PLAN Lab.
The text was updated successfully, but these errors were encountered:
maybe this is also related to #198
Sorry, something went wrong.
No branches or pull requests
In the following example we have two indentical sets that aren’t equal from
assertEquals
perspective:Bug is found by fuzzing team @ PLAN Lab.
The text was updated successfully, but these errors were encountered: