Skip to content

Commit b450ca9

Browse files
committed
Remove one more unnecessary type boundary
1 parent 4b881f3 commit b450ca9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kotlinx-coroutines-core/common/test/AtomicCancellationCommonTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class AtomicCancellationCommonTest : TestBase() {
138138
val mutex = Mutex(true) // locked mutex
139139
val job = launch(start = CoroutineStart.UNDISPATCHED) {
140140
expect(2)
141-
select<String> { // suspends
141+
select { // suspends
142142
mutex.onLock {
143143
expect(4)
144144
"OK"
@@ -152,4 +152,4 @@ class AtomicCancellationCommonTest : TestBase() {
152152
yield() // now yield
153153
finish(4)
154154
}
155-
}
155+
}

0 commit comments

Comments
 (0)