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 0a4643c commit effe7c7Copy full SHA for effe7c7
deprecated/stately-isolate/src/commonTest/kotlin/co/touchlab/stately/isolate/IsoStateTest.kt
@@ -17,7 +17,7 @@ class IsoStateTest {
17
val ops = ThreadOperations {}
18
19
val isoList = IsolateState { mutableListOf<SomeData>() }
20
- repeat(100_000) { rcount ->
+ repeat(5_000) { rcount ->
21
ops.exe {
22
isoList.access { l ->
23
l.add(SomeData("arst $rcount"))
@@ -31,7 +31,7 @@ class IsoStateTest {
31
l.size
32
}
33
34
- assertEquals(100_000, lsize)
+ assertEquals(5_000, lsize)
35
36
37
0 commit comments