浏览代码

Fix Microsecond -> Milisecond.

A bit too quick on the trigger on some text completion I think...

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff 6 年之前
父节点
当前提交
5d818213ff
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      internal/test/daemon/daemon.go

+ 1 - 1
internal/test/daemon/daemon.go

@@ -352,7 +352,7 @@ func (d *Daemon) StartWithLogFile(out *os.File, providedArgs ...string) error {
 
 
 				select {
 				select {
 				case <-ctx.Done():
 				case <-ctx.Done():
-				case <-time.After(500 * time.Microsecond):
+				case <-time.After(500 * time.Millisecond):
 				}
 				}
 				continue
 				continue
 			}
 			}