We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f15e9 commit 0f43f7eCopy full SHA for 0f43f7e
assertk/src/commonTest/kotlin/test/assertk/assertions/IterableTest.kt
@@ -250,7 +250,7 @@ class IterableTest {
250
val error = assertFailsWith<AssertionError>() {
251
assertThat(iterableOf(1, "two")).doesNotContainInstanceOf<String>()
252
}
253
- assertEquals("expected to contain no instances of class kotlin.String but was [1, two]", error.message)
+ assertEquals("expected to not contain instances of class kotlin.String but was [1, two]", error.message)
254
255
256
@Test fun doesNotContainInstanceOf_element_missing_passes() {
0 commit comments