We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 222f3f2 commit 7cb5cc2Copy full SHA for 7cb5cc2
common/kotlinx-coroutines-core-common/test/channels/TestChannelKind.kt
@@ -4,7 +4,7 @@
4
5
package kotlinx.coroutines.experimental.channels
6
7
-import kotlinx.coroutines.experimental.selects.SelectClause1
+import kotlinx.coroutines.experimental.selects.*
8
9
enum class TestChannelKind {
10
RENDEZVOUS {
@@ -16,8 +16,8 @@ enum class TestChannelKind {
16
override fun toString(): String = "ArrayChannel(1)"
17
},
18
ARRAY_10 {
19
- override fun create(): Channel<Int> = ArrayChannel(8)
20
- override fun toString(): String = "ArrayChannel(8)"
+ override fun create(): Channel<Int> = ArrayChannel(10)
+ override fun toString(): String = "ArrayChannel(10)"
21
22
LINKED_LIST {
23
override fun create(): Channel<Int> = LinkedListChannel()
0 commit comments