From 51ec46bbd76b5bf4c14f6c034350b0379080c6b0 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 3 Mar 2025 13:40:33 +0600 Subject: [PATCH] update timeout for deepInsertOnWorks --- coroutines/src/commonTest/kotlin/SortedBinaryTreeNodeTests.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coroutines/src/commonTest/kotlin/SortedBinaryTreeNodeTests.kt b/coroutines/src/commonTest/kotlin/SortedBinaryTreeNodeTests.kt index b601f75309b..148445e886b 100644 --- a/coroutines/src/commonTest/kotlin/SortedBinaryTreeNodeTests.kt +++ b/coroutines/src/commonTest/kotlin/SortedBinaryTreeNodeTests.kt @@ -44,7 +44,7 @@ class SortedBinaryTreeNodeTests { } } @Test - fun deepInsertOnWorks() = runTest(timeout = 320.seconds) { // 320 due to js targets -.- + fun deepInsertOnWorks() = runTest(timeout = 440.seconds) { // 440 due to js targets -.- val zeroNode = SortedBinaryTreeNode(0) val rangeRadius = 500 val nodes = mutableMapOf>()