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
Affected Version: 0.15.0 API (fluent-en_GB, infix-en_GB): infix-en_GB Platform (jvm, js): all Extension (none, kotlin 1.3): none
Consider the following code snippet
expect(mapOf(1 to 2)) contains all(keyValue(1) { isLessThan(3) }, keyValue(2) { toBe(2) })
all was replaced by keyValues in 0.15.0 instead of deprecating all and adding keyValues as replacement
all
keyValues
no breaking changes in minor versions, i.e. all should have been deprecated but not removed
The text was updated successfully, but these errors were encountered:
robstoll
Successfully merging a pull request may close this issue.
Affected Version: 0.15.0
API (fluent-en_GB, infix-en_GB): infix-en_GB
Platform (jvm, js): all
Extension (none, kotlin 1.3): none
How to reproduce the problem
Consider the following code snippet
Describe the bug
all
was replaced bykeyValues
in 0.15.0 instead of deprecatingall
and addingkeyValues
as replacementExpected behaviour
no breaking changes in minor versions, i.e.
all
should have been deprecated but not removedThe text was updated successfully, but these errors were encountered: