File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
a2a-client/src/jvmTest/kotlin/ai/koog/a2a/client
a2a-server/src/jvmTest/kotlin/ai/koog/a2a/server Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import org.testcontainers.containers.GenericContainer
1515import org.testcontainers.containers.wait.strategy.Wait
1616import org.testcontainers.junit.jupiter.Container
1717import org.testcontainers.junit.jupiter.Testcontainers
18- import kotlin.time.Duration.Companion.seconds
18+ import kotlin.time.Duration.Companion.minutes
1919
2020/* *
2121 * Integration test class for testing the JSON-RPC HTTP communication in the A2A client context.
@@ -34,7 +34,7 @@ class A2AClientJsonRpcIntegrationTest : BaseA2AProtocolTest() {
3434 .waitingFor(Wait .forListeningPort())
3535 }
3636
37- override val testTimeout = 10 .seconds
37+ override val testTimeout = 3 .minutes
3838
3939 private val httpClient = HttpClient {
4040 install(Logging ) {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ import org.junit.jupiter.api.TestInstance
4747import java.net.ServerSocket
4848import kotlin.test.BeforeTest
4949import kotlin.test.Test
50- import kotlin.time.Duration.Companion.seconds
50+ import kotlin.time.Duration.Companion.minutes
5151import kotlin.uuid.ExperimentalUuidApi
5252import kotlin.uuid.Uuid
5353
@@ -59,7 +59,7 @@ import kotlin.uuid.Uuid
5959@OptIn(ExperimentalUuidApi ::class )
6060@TestInstance(TestInstance .Lifecycle .PER_CLASS )
6161class A2AServerJsonRpcIntegrationTest : BaseA2AProtocolTest () {
62- override val testTimeout = 10 .seconds
62+ override val testTimeout = 3 .minutes
6363
6464 private var testPort: Int? = null
6565 private val testPath = " /a2a"
You can’t perform that action at this time.
0 commit comments