We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd8ad9 commit 72384ddCopy full SHA for 72384dd
krpc/krpc-test/src/commonTest/kotlin/kotlinx/rpc/krpc/test/TransportTest.kt
@@ -259,7 +259,8 @@ class TransportTest {
259
}
260
261
private val handshakeClassSerialName = KrpcProtocolMessage.Handshake.serializer().descriptor.serialName
262
- private val clientHandshake = ".*\\[Client] \\[Send] \\{\"type\":\"$handshakeClassSerialName\".*+".toRegex()
+ @Suppress("RegExpRedundantEscape") // fails on js otherwise
263
+ private val clientHandshake = ".*\\[Client\\] \\[Send\\] \\{\"type\":\"$handshakeClassSerialName\".*".toRegex()
264
265
private val transportInitialized = atomic(0)
266
private val configInitialized = atomic(0)
0 commit comments