From 6f4c0025139765efde1c3b58a2d3ef2761a12348 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Mon, 27 Jan 2025 04:40:46 +0100 Subject: [PATCH] fix flaky TestConnectionReceivePrioritization (#4936) --- connection_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/connection_test.go b/connection_test.go index 331fe0c7..32ade183 100644 --- a/connection_test.go +++ b/connection_test.go @@ -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):