From d6ada45f45c6743ec0ab3f049a0742278634a22a Mon Sep 17 00:00:00 2001 From: Megan Kostick Date: Mon, 6 Apr 2015 08:54:35 -0700 Subject: [PATCH] Closes #12042 - fix logDone format Signed-off-by: Megan Kostick --- integration-cli/docker_cli_rmi_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-cli/docker_cli_rmi_test.go b/integration-cli/docker_cli_rmi_test.go index fd34c22429..6e909c0c6c 100644 --- a/integration-cli/docker_cli_rmi_test.go +++ b/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") }