File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
krpc/krpc-test/src/commonMain/kotlin/kotlinx/rpc/krpc/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ abstract class KrpcTransportTestBase {
331
331
}
332
332
333
333
@Test
334
- fun RPC_should_be_able_to_receive_100_000_ints_in_reasonable_time () = runTest(timeout = JS_EXTENDED_TIMEOUT ) {
334
+ fun RPC_should_be_able_to_receive_100_000_ints_in_reasonable_time () = runTest(timeout = EXTENDED_TIMEOUT ) {
335
335
val n = 100_000
336
336
var counter = 0
337
337
val last = client.getNInts(n).onEach {
@@ -505,6 +505,6 @@ abstract class KrpcTransportTestBase {
505
505
}
506
506
}
507
507
508
- private val JS_EXTENDED_TIMEOUT = if (isJs) 400 .seconds else 120 .seconds
508
+ private val EXTENDED_TIMEOUT = if (isJs) 500 .seconds else 200 .seconds
509
509
510
510
internal expect val isJs: Boolean
You can’t perform that action at this time.
0 commit comments