Bump timeout

This commit is contained in:
Marco Munizaga
2023-02-17 23:00:49 +00:00
parent cec8c6584b
commit f00c9507c3

View File

@@ -716,7 +716,7 @@ func TestNegotiationCancel(t *testing.T) {
select {
case err := <-errCh:
require.Equal(t, err, context.Canceled)
case <-time.After(500 * time.Millisecond):
case <-time.After(5 * time.Second):
// failed to cancel
t.Fatal("expected negotiation to be canceled")
}