diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCase.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCase.kt index 9f73073eb2c..a709af5933e 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCase.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCase.kt @@ -52,7 +52,9 @@ internal class TestFile private constructor( location.writeText(state.text) this.state = State.Committed } - is State.Committed -> System.err.println("$this has been committed again. Need to check why this had happened.") + is State.Committed -> { + // Nothing to do. File is already saved to the disk. + } } }