pull/7973/head
Sharif Elgamal 2020-05-20 16:56:28 -07:00
parent 95584eac43
commit 023b2dc911
1 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ func validateStopRunningNode(ctx context.Context, t *testing.T, profile string)
func validateStartNodeAfterStop(ctx context.Context, t *testing.T, profile string) {
if DockerDriver() {
rr, err := Run(t, exec.Command("docker", "version", "-f", "{{.Server.Version}}")
rr, err := Run(t, exec.Command("docker", "version", "-f", "{{.Server.Version}}"))
if err != nil {
t.Fatalf("docker is broken: %v", err)
}
@ -149,7 +149,7 @@ func validateStartNodeAfterStop(ctx context.Context, t *testing.T, profile strin
t.Skip("kic containers are not supported on docker's azure")
}
}
// Grab the stopped node
name := "m03"