inlet/flow: wait a bit longer to get back flows with UDP

There is no harm in waiting more as when the test works, the wait is
minimal.
This commit is contained in:
Vincent Bernat
2025-09-08 22:40:41 +02:00
parent 79a3266a98
commit ecfa6fb373

View File

@@ -74,7 +74,7 @@ func TestUDPInput(t *testing.T) {
// Get it back // Get it back
select { select {
case <-time.After(20 * time.Millisecond): case <-time.After(time.Second):
t.Fatal("no decoded flows received") t.Fatal("no decoded flows received")
case <-done: case <-done:
} }