Skip to content

Commit

Permalink
chore: increase dial timeout in tls tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanhitt committed Dec 14, 2024
1 parent 3b0e146 commit 00de45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ func TestServer_RunTLS(t *testing.T) {
}()

// wait for the server to start
conn, err := net.DialTimeout("tcp", s.Server.Addr, 2*time.Second)
conn, err := net.DialTimeout("tcp", s.Server.Addr, 5*time.Second)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 00de45e

Please sign in to comment.