Skip to content

Commit 96142b1

Browse files
committed
Fixed failed test
1 parent 8005724 commit 96142b1

File tree

1 file changed

+2
-1
lines changed
  • utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api

1 file changed

+2
-1
lines changed

utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,8 @@ enum class CodegenLanguage(
12711271
"-d", buildDirectory,
12721272
"-cp", classPath,
12731273
"-XDignore.symbol.file", // to let javac use classes from rt.jar
1274-
"--add-exports", "java.base/sun.reflect.generics.repository=ALL-UNNAMED"
1274+
"--add-exports", "java.base/sun.reflect.generics.repository=ALL-UNNAMED",
1275+
"--add-exports", "java.base/sun.text=ALL-UNNAMED",
12751276
).plus(sourcesFiles)
12761277

12771278
KOTLIN -> listOf("-d", buildDirectory, "-jvm-target", jvmTarget, "-cp", classPath).plus(sourcesFiles)

0 commit comments

Comments
 (0)