Skip to content

Commit

Permalink
Bump retry timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilquist committed Mar 8, 2024
1 parent 2a46b85 commit ce52e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/js-jvm/src/test/scala/fs2/io/net/udp/UdpSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import scala.concurrent.duration._
class UdpSuite extends Fs2Suite with UdpSuitePlatform {
def sendAndReceive(socket: DatagramSocket[IO], toSend: Datagram): IO[Datagram] =
socket
.write(toSend) >> socket.read.timeoutTo(100.millis, IO.defer(sendAndReceive(socket, toSend)))
.write(toSend) >> socket.read.timeoutTo(1.second, IO.defer(sendAndReceive(socket, toSend)))

group("udp") {
test("echo one") {
Expand Down

0 comments on commit ce52e21

Please sign in to comment.