From 34bbf59efaccd6b0136a831f9fb0e177569c9562 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 31 Oct 2019 14:24:34 +0100 Subject: [PATCH] cmd/gogio: double sleep to ensure X11 output is available Signed-off-by: Elias Naur --- cmd/gogio/x11_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gogio/x11_test.go b/cmd/gogio/x11_test.go index 3c17ffd8..4697d509 100644 --- a/cmd/gogio/x11_test.go +++ b/cmd/gogio/x11_test.go @@ -162,7 +162,7 @@ func (d *X11TestDriver) Start(t_ *testing.T, path string, width, height int) (cl // Wait for the gio app to render. // TODO(mvdan): do this properly, e.g. via waiting for log lines // from the gio program. - time.Sleep(200 * time.Millisecond) + time.Sleep(400 * time.Millisecond) return cleanups }