fix flaky TestConnectionReceivePrioritization (#4936)

This commit is contained in:
Marten Seemann 2025-01-27 04:40:46 +01:00 committed by GitHub
parent e524d0c1ff
commit 6f4c002513
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1458,13 +1458,13 @@ func testConnectionReceivePrioritization(t *testing.T, handshakeComplete bool) i
).AnyTimes()
}
errChan := make(chan error, 1)
go func() { errChan <- tc.conn.run() }()
for i := 0; i < 10; i++ {
tc.conn.handlePacket(getShortHeaderPacket(t, tc.srcConnID, protocol.PacketNumber(i), []byte("foobar")))
}
errChan := make(chan error, 1)
go func() { errChan <- tc.conn.run() }()
select {
case <-done:
case <-time.After(time.Second):