From 74ee405a27b19f2d91caaf50029cea3b13ddcaf2 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Mon, 29 Dec 2014 12:34:59 -0800 Subject: [PATCH] Fix done messages and error message for ipc tests Signed-off-by: Alexander Morozov --- integration-cli/docker_cli_run_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index 718161d529..d55d8d7f71 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -2520,11 +2520,11 @@ func TestRunModeIpcHost(t *testing.T) { out2 = strings.Trim(out2, "\n") if hostIpc == out2 { - t.Fatalf("IPC should be different without --ipc=host %s != %s\n", hostIpc, out2) + t.Fatalf("IPC should be different without --ipc=host %s == %s\n", hostIpc, out2) } deleteAllContainers() - logDone("run - hostname and several network modes") + logDone("run - ipc host mode") } func TestRunModeIpcContainer(t *testing.T) { @@ -2562,7 +2562,7 @@ func TestRunModeIpcContainer(t *testing.T) { } deleteAllContainers() - logDone("run - hostname and several network modes") + logDone("run - ipc container mode") } func TestContainerNetworkMode(t *testing.T) {