File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/jvmTest/kotlin/client Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ import kotlin.test.fail
4949class ClientTest {
5050 @Test
5151 fun `should initialize with matching protocol version` () = runTest {
52- var initialied = false
52+ var initialised = false
5353 val clientTransport = object : AbstractTransport () {
5454 override suspend fun start () {}
5555
5656 override suspend fun send (message : JSONRPCMessage ) {
5757 if (message !is JSONRPCRequest ) return
58- initialied = true
58+ initialised = true
5959 val result = InitializeResult (
6060 protocolVersion = LATEST_PROTOCOL_VERSION ,
6161 capabilities = ServerCapabilities (),
@@ -90,7 +90,7 @@ class ClientTest {
9090 )
9191
9292 client.connect(clientTransport)
93- assertTrue(initialied )
93+ assertTrue(initialised )
9494 }
9595
9696 @Test
You can’t perform that action at this time.
0 commit comments