mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky TestConnectionReceivePrioritization (#4936)
This commit is contained in:
parent
e524d0c1ff
commit
6f4c002513
1 changed files with 3 additions and 3 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue