Skip to content

Commit d25deee

Browse files
committed
enable java test
1 parent afcce7a commit d25deee

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

executors/java/src/test/kotlin/com/javaaidev/llmcodeexecutor/executor/java/JavaCodeExecutorTest.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@ package com.javaaidev.llmcodeexecutor.executor.java
22

33
import com.javaaidev.llmcodeexecutor.core.CodeExecutionRequest
44
import org.junit.jupiter.api.Test
5-
import kotlin.test.Ignore
65

76
class JavaCodeExecutorTest {
87
@Test
9-
@Ignore
108
fun basic() {
119
val result = JavaCodeExecutor.execute(
1210
CodeExecutionRequest(
1311
"""
1412
public class Main {
1513
public static void main(String[] args) {
16-
System.out.println("hello");
14+
System.out.println("Hello");
1715
}
1816
}
1917
""".trimIndent()

0 commit comments

Comments
 (0)