Merge pull request #14706 from duglin/FixInspectTest

Fix InspectExecID test
This commit is contained in:
Jessie Frazelle 2015-07-17 14:37:23 -07:00
Родитель 415f744d0c c5c98c31a1
Коммит 465192cb28
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -449,7 +449,7 @@ func (s *DockerSuite) TestInspectExecID(c *check.C) {
if out != "[]" && out != "<no value>" {
break
}
if i == tries {
if i+1 == tries {
c.Fatalf("ExecIDs should not be empty, got: %s", out)
}
time.Sleep(1 * time.Second)