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 91b43f6 commit 538595cCopy full SHA for 538595c
core/src/test/kotlin/com/tschuchort/compiletesting/KotlinCompilationTests.kt
@@ -850,7 +850,7 @@ class KotlinCompilationTests {
850
}
851
// it should fail since we are passing a fake jdk
852
assertThat(compilation.isFailure).isTrue()
853
- val logs = logsStream.toString(Charsets.UTF_8)
+ val logs = logsStream.toString("utf-8")// use string charset for jdk 8 compatibility
854
assertThat(logs).contains(
855
"compiling java in a sub-process because a jdkHome is specified"
856
)
0 commit comments