File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dataforge-data/src/jvmTest/kotlin/space/kscience/dataforge/data Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import kotlin.time.Duration.Companion.milliseconds
1313@OptIn(DFExperimental ::class , ExperimentalCoroutinesApi ::class )
1414internal 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 }
You can’t perform that action at this time.
0 commit comments