From a68111fb24a4a19c8ca21ae55def9de2d794d34f Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Thu, 2 Oct 2025 08:17:47 +0200 Subject: [PATCH] Make TestCopyLineByLine less flaky (#5589) --- pipeline/log/utils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/log/utils_test.go b/pipeline/log/utils_test.go index 9dbd985f0..088656b93 100644 --- a/pipeline/log/utils_test.go +++ b/pipeline/log/utils_test.go @@ -64,7 +64,7 @@ func TestCopyLineByLine(t *testing.T) { }() // wait for the goroutine to start - time.Sleep(time.Millisecond) + time.Sleep(time.Second / 10) // write 4 bytes without newline if _, err := w.Write([]byte("1234")); err != nil {