Shorten the sleep amount in the fake docker client

pull/6/head
gmarek 2016-01-11 12:15:11 +01:00
parent f580569c34
commit 573c3ca320
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ func (f *FakeDockerClient) CreateContainer(c docker.CreateContainerOptions) (*do
container := docker.Container{ID: name, Name: name, Config: c.Config}
containerCopy := container
f.ContainerMap[name] = &containerCopy
f.normalSleep(200, 50, 50)
f.normalSleep(100, 25, 25)
return &container, nil
}