From 5d818213ff3b9f8cda8e4fb3b071bef8fab782ad Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Fri, 12 Jul 2019 18:41:08 -0700 Subject: [PATCH] Fix Microsecond -> Milisecond. A bit too quick on the trigger on some text completion I think... Signed-off-by: Brian Goff --- internal/test/daemon/daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/test/daemon/daemon.go b/internal/test/daemon/daemon.go index 3c7ec5ef50a9a..cca2c078fe16a 100644 --- a/internal/test/daemon/daemon.go +++ b/internal/test/daemon/daemon.go @@ -352,7 +352,7 @@ func (d *Daemon) StartWithLogFile(out *os.File, providedArgs ...string) error { select { case <-ctx.Done(): - case <-time.After(500 * time.Microsecond): + case <-time.After(500 * time.Millisecond): } continue }