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 08370d1 commit 6c2e65bCopy full SHA for 6c2e65b
kotlinx-coroutines-core/common/test/flow/operators/CombineParametersTest.kt
@@ -70,7 +70,7 @@ class CombineParametersTest : TestBase() {
70
71
@Test
72
fun testVararg() = runTest {
73
- val flow = combine(
+ val flow = combine<Any?, String>(
74
flowOf("1"),
75
flowOf(2),
76
flowOf("3"),
@@ -83,7 +83,7 @@ class CombineParametersTest : TestBase() {
83
84
85
fun testVarargTransform() = runTest {
86
- val flow = combineTransform(
+ val flow = combineTransform<Any?, String>(
87
88
89
0 commit comments