mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Use 2 seconds instead of 2000 milliseconds
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
4bd4d18e11
commit
cbf2f4d281
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ func (s *DockerExternalVolumeSuite) TestExternalVolumeDriverRetryNotImmediatelyE
|
|||
|
||||
<-started
|
||||
// wait for a retry to occur, then create spec to allow plugin to register
|
||||
time.Sleep(2000 * time.Millisecond)
|
||||
time.Sleep(2 * time.Second)
|
||||
p := newVolumePlugin(c, driverName)
|
||||
defer p.Close()
|
||||
|
||||
|
|
Loading…
Reference in a new issue