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 4b881f3 commit b450ca9Copy full SHA for b450ca9
kotlinx-coroutines-core/common/test/AtomicCancellationCommonTest.kt
@@ -138,7 +138,7 @@ class AtomicCancellationCommonTest : TestBase() {
138
val mutex = Mutex(true) // locked mutex
139
val job = launch(start = CoroutineStart.UNDISPATCHED) {
140
expect(2)
141
- select<String> { // suspends
+ select { // suspends
142
mutex.onLock {
143
expect(4)
144
"OK"
@@ -152,4 +152,4 @@ class AtomicCancellationCommonTest : TestBase() {
152
yield() // now yield
153
finish(4)
154
}
155
-}
+}
0 commit comments