Browse code

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

Fixes logDone format

Brian Goff authored on 2015/04/07 01:34:38
Showing 1 changed files
... ...
@@ -36,7 +36,7 @@ func TestRmiWithContainerFails(t *testing.T) {
36 36
 
37 37
 	deleteContainer(cleanedContainerID)
38 38
 
39
-	logDone("rmi- container using image while rmi, should not remove image name")
39
+	logDone("rmi - container using image while rmi, should not remove image name")
40 40
 }
41 41
 
42 42
 func TestRmiTag(t *testing.T) {
... ...
@@ -74,7 +74,7 @@ func TestRmiTag(t *testing.T) {
74 74
 		}
75 75
 
76 76
 	}
77
-	logDone("rmi - tag,rmi- tagging the same images multiple times then removing tags")
77
+	logDone("rmi - tag,rmi - tagging the same images multiple times then removing tags")
78 78
 }
79 79
 
80 80
 func TestRmiTagWithExistingContainers(t *testing.T) {
... ...
@@ -169,5 +169,5 @@ func TestRmiBlank(t *testing.T) {
169 169
 	if strings.Contains(out, "No such image") {
170 170
 		t.Fatalf("Wrong error message generated: %s", out)
171 171
 	}
172
-	logDone("rmi- blank image name")
172
+	logDone("rmi - blank image name")
173 173
 }