summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorBrian Goff <cpuguy83@gmail.com>2019-07-12 18:41:08 -0700
committerBrian Goff <cpuguy83@gmail.com>2019-07-12 18:43:08 -0700
commit5d818213ff3b9f8cda8e4fb3b071bef8fab782ad (patch)
tree004520d29bba9763373954fa44b6083be371ffed /internal
parent0e041d68d8fe0f36be5beebc6535a1740fc82aab (diff)
downloaddocker-5d818213ff3b9f8cda8e4fb3b071bef8fab782ad.tar.gz
Fix Microsecond -> Milisecond.
A bit too quick on the trigger on some text completion I think... Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Diffstat (limited to 'internal')
-rw-r--r--internal/test/daemon/daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/test/daemon/daemon.go b/internal/test/daemon/daemon.go
index 3c7ec5ef50..cca2c078fe 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
}