Skip to content

Commit

Permalink
Commented out StreamExtras for now
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Nov 27, 2024
1 parent 3cca82d commit 29229b1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cats/src/test/scala/spec/ExtrasSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ class ExtrasSpec extends AnyWordSpec with Matchers {
io.unsafeRunSync() should be(42)
}
}
"StreamExtras" should {
"convert Stream to fs2.Stream" in {
val stream = rapid.Stream.fromList(List(1, 2, 3))
val fs2Stream = stream.toFS2
val result = fs2Stream.compile.toList.unsafeRunSync()
result should be(List(1, 2, 3))
}
}
// "StreamExtras" should {
// "convert Stream to fs2.Stream" in {
// val stream = rapid.Stream.fromList(List(1, 2, 3))
// val fs2Stream = stream.toFS2
// val result = fs2Stream.compile.toList.unsafeRunSync()
// result should be(List(1, 2, 3))
// }
// }
}

0 comments on commit 29229b1

Please sign in to comment.