Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 80f5d6f

Browse files
committed
Fixing compile issue
Signed-off-by: Winarto Zhao <[email protected]>
1 parent d7161b3 commit 80f5d6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/scala/reactor/core/scala/publisher/SParallelFluxTest.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class SParallelFluxTest extends FreeSpec with Matchers {
2828
".map should map from T to U" in {
2929
val expected = data.map(_.toString)
3030
StepVerifier.create(fluxParallel.map(i => i.toString))
31-
.expectNextMatches(i => expected.contains(i))
32-
.expectNextMatches(i => expected.contains(i))
33-
.expectNextMatches(i => expected.contains(i))
31+
.expectNextMatches((i: String) => expected.contains(i))
32+
.expectNextMatches((i: String) => expected.contains(i))
33+
.expectNextMatches((i: String) => expected.contains(i))
3434
.verifyComplete()
3535
}
3636

0 commit comments

Comments
 (0)