Skip to content

Commit 35731ee

Browse files
committed
Rename test
1 parent 9f5e9eb commit 35731ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import io.ktor.client.engine.cio.CIO as ClientCIO
2323
import io.ktor.server.cio.CIO as ServerCIO
2424
import io.ktor.server.sse.SSE as ServerSSE
2525

26-
open class SseIntegrationBaseTest {
26+
open class AbstractSseIntegrationTest {
2727

2828
suspend fun EmbeddedServer<*, *>.actualPort() = engine.resolvedConnectors().single().port
2929

@@ -97,7 +97,7 @@ open class SseIntegrationBaseTest {
9797

9898
companion object {
9999
private const val DEFAULT_CLIENT_NAME = "sse-test-client"
100-
private const val DEFAULT_SERVER_NAME = "sse-test-client"
100+
private const val DEFAULT_SERVER_NAME = "sse-test-server"
101101
private const val VERSION = "1.0.0"
102102
private const val URL = "127.0.0.1"
103103
private const val PORT = 0

kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/sse/SseIntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import kotlin.test.Test
1212
import kotlin.test.assertTrue
1313
import kotlin.time.Duration.Companion.seconds
1414

15-
class SseIntegrationTest : SseIntegrationBaseTest() {
15+
class SSeIntegrationTest : AbstractSseIntegrationTest() {
1616

1717
@Test
1818
fun `client should be able to connect to sse server`() = runTest(timeout = 5.seconds) {

0 commit comments

Comments
 (0)