Explorar el Código

Merge pull request #12112 from kostickm/12042-fix-logDone-format

Fixes logDone format
Brian Goff hace 10 años
padre
commit
d3fa57e051
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      integration-cli/docker_cli_rmi_test.go

+ 3 - 3
integration-cli/docker_cli_rmi_test.go

@@ -36,7 +36,7 @@ func TestRmiWithContainerFails(t *testing.T) {
 
 	deleteContainer(cleanedContainerID)
 
-	logDone("rmi- container using image while rmi, should not remove image name")
+	logDone("rmi - container using image while rmi, should not remove image name")
 }
 
 func TestRmiTag(t *testing.T) {
@@ -74,7 +74,7 @@ func TestRmiTag(t *testing.T) {
 		}
 
 	}
-	logDone("rmi - tag,rmi- tagging the same images multiple times then removing tags")
+	logDone("rmi - tag,rmi - tagging the same images multiple times then removing tags")
 }
 
 func TestRmiTagWithExistingContainers(t *testing.T) {
@@ -169,5 +169,5 @@ func TestRmiBlank(t *testing.T) {
 	if strings.Contains(out, "No such image") {
 		t.Fatalf("Wrong error message generated: %s", out)
 	}
-	logDone("rmi- blank image name")
+	logDone("rmi - blank image name")
 }