mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky TestALPN integration test (#4909)
This commit is contained in:
parent
eb70424fba
commit
bea70c6489
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,6 @@ func TestALPN(t *testing.T) {
|
|||
require.NoError(t, err)
|
||||
cs := conn.ConnectionState()
|
||||
require.Equal(t, alpn, cs.TLS.NegotiatedProtocol)
|
||||
require.NoError(t, conn.CloseWithError(0, ""))
|
||||
|
||||
select {
|
||||
case c := <-acceptChan:
|
||||
|
@ -417,6 +416,7 @@ func TestALPN(t *testing.T) {
|
|||
case <-time.After(time.Second):
|
||||
t.Fatal("timeout waiting for server connection")
|
||||
}
|
||||
require.NoError(t, conn.CloseWithError(0, ""))
|
||||
|
||||
// now try with a different ALPN
|
||||
tlsConf := getTLSClientConfig()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue