Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ logging = "7.0.13"
slf4j = "2.0.17"
kotest = "6.0.4"
awaitility = "4.3.0"
mokksy = "0.6.1"
mokksy = "0.6.2"

[libraries]
# Plugins
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import org.junit.jupiter.api.TestInstance
internal abstract class AbstractStreamableHttpClientTest {

// start mokksy on random port
protected val mockMcp: OldSchemaMockMcp = OldSchemaMockMcp(verbose = true)
protected val mockMcp: MockMcp = MockMcp(verbose = true)

@AfterEach
fun afterEach() {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ internal class StreamableHttpClientTest : AbstractStreamableHttpClientTest() {

delay(1.seconds)

client.ping() // connection is still alive
client.ping() // the connection is still alive

client.close()
}
Expand Down
Loading