Skip to content

Commit

Permalink
Remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
kciesielski committed Mar 27, 2024
1 parent 21788be commit bf6a76e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ abstract class ServerWebSocketTests[F[_], S <: Streams[S], OPTIONS, ROUTE](
.mapDecode {
case WebSocketFrame.Text(p, _, _) => stringCodec.decode(p)
case WebSocketFrame.Pong(payload) =>
println(payload.length)
stringCodec.decode(new String(payload))
case f => DecodeResult.Error(f.toString, new UnsupportedWebSocketFrameException(f))
}(a => WebSocketFrame.text(stringCodec.encode(a)))
Expand Down

0 comments on commit bf6a76e

Please sign in to comment.