Skip to content

Commit f6da25c

Browse files
committed
extend test timeiout for ActionsTest
1 parent 31d2176 commit f6da25c

File tree

1 file changed

+2
-2
lines changed
  • dataforge-data/src/jvmTest/kotlin/space/kscience/dataforge/data

1 file changed

+2
-2
lines changed

dataforge-data/src/jvmTest/kotlin/space/kscience/dataforge/data/ActionsTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import kotlin.time.Duration.Companion.milliseconds
1313
@OptIn(DFExperimental::class, ExperimentalCoroutinesApi::class)
1414
internal class ActionsTest {
1515
@Test
16-
fun testStaticMapAction() = runTest(timeout = 200.milliseconds) {
16+
fun testStaticMapAction() = runTest(timeout = 500.milliseconds) {
1717
val plusOne = Action.mapping<Int, Int> {
1818
result { it + 1 }
1919
}
@@ -30,7 +30,7 @@ internal class ActionsTest {
3030
}
3131

3232
@Test
33-
fun testDynamicMapAction() = runTest(timeout = 200.milliseconds) {
33+
fun testDynamicMapAction() = runTest(timeout = 500.milliseconds) {
3434
val plusOne = Action.mapping<Int, Int> {
3535
result { it + 1 }
3636
}

0 commit comments

Comments
 (0)