Fixing TestInspectApiContainerVolumeDriver

Currently the TestInspectApiContainerVolumeDriver is testing the
existence of a volume driver without specifing any volume driver.
This commit fixes that.

Signed-off-by: André Martins <aanm90@gmail.com>
Upstream-commit: 693b5c429820785d572b8a32bf0818c909a2090f
Component: engine
This commit is contained in:
André Martins
2016-01-14 03:22:53 +00:00
parent 1e6d6c8c64
commit a081c98efd
@@ -69,7 +69,7 @@ func (s *DockerSuite) TestInspectApiContainerVolumeDriverLegacy(c *check.C) {
}
func (s *DockerSuite) TestInspectApiContainerVolumeDriver(c *check.C) {
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
out, _ := dockerCmd(c, "run", "-d", "--volume-driver", "local", "busybox", "true")
cleanedContainerID := strings.TrimSpace(out)