Browse code

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>

André Martins authored on 2016/01/14 12:21:48
Showing 1 changed files
... ...
@@ -69,7 +69,7 @@ func (s *DockerSuite) TestInspectApiContainerVolumeDriverLegacy(c *check.C) {
69 69
 }
70 70
 
71 71
 func (s *DockerSuite) TestInspectApiContainerVolumeDriver(c *check.C) {
72
-	out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
72
+	out, _ := dockerCmd(c, "run", "-d", "--volume-driver", "local", "busybox", "true")
73 73
 
74 74
 	cleanedContainerID := strings.TrimSpace(out)
75 75