Skip to content

Commit

Permalink
[WIP] Disable pong-related tests for vertx-zio and vertx-future (#3699)
Browse files Browse the repository at this point in the history
  • Loading branch information
kciesielski committed Apr 18, 2024
1 parent e9d0650 commit 984a3b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class VertxServerTest extends TestSuite {
VertxStreams,
autoPing = false,
failingPipe = false,
handlePong = true
handlePong = false
) {
override def functionToPipe[A, B](f: A => B): VertxStreams.Pipe[A, B] = in => new ReadStreamMapping(in, f)
override def emptyPipe[A, B]: VertxStreams.Pipe[A, B] = _ => new EmptyReadStream()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ZioVertxServerTest extends TestSuite with OptionValues {
ZioStreams,
autoPing = true,
failingPipe = true,
handlePong = true
handlePong = false
) {
override def functionToPipe[A, B](f: A => B): streams.Pipe[A, B] = in => in.map(f)
override def emptyPipe[A, B]: streams.Pipe[A, B] = _ => ZStream.empty
Expand Down

0 comments on commit 984a3b5

Please sign in to comment.