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 e4ee55d commit cdc1df9Copy full SHA for cdc1df9
atomicfu/src/concurrentTest/kotlin/kotlinx/atomicfu/locks/LockWithTimoutTests.kt
@@ -6,7 +6,7 @@ import kotlin.test.Test
6
import kotlin.test.assertEquals
7
import kotlin.time.Duration.Companion.milliseconds
8
9
-class LockWithTimoutTests {
+class LockWithTimeoutTests {
10
11
// Helper class with atomic counter in constructor
12
class AtomicCounter(initialValue: Int = 0) {
atomicfu/src/jvmTest/kotlin/kotlinx/atomicfu/locks/NativeMutexTimeoutLincheckTest.kt
@@ -37,7 +37,7 @@ class NativeMutexTimeoutLincheckTest {
37
.check(this::class.java)
38
39
@Operation
40
- fun incNoTimout() {
+ fun incNoTimeout() {
41
localParkers.computeIfAbsent(ParkingSupport.currentThreadHandle()) { ThreadParker() }
42
lock.lock()
43
counter.inc()
0 commit comments