Browse code

Fix done messages and error message for ipc tests

Signed-off-by: Alexander Morozov <lk4d4@docker.com>

Alexander Morozov authored on 2014/12/30 05:34:59
Showing 1 changed files
... ...
@@ -2520,11 +2520,11 @@ func TestRunModeIpcHost(t *testing.T) {
2520 2520
 
2521 2521
 	out2 = strings.Trim(out2, "\n")
2522 2522
 	if hostIpc == out2 {
2523
-		t.Fatalf("IPC should be different without --ipc=host %s != %s\n", hostIpc, out2)
2523
+		t.Fatalf("IPC should be different without --ipc=host %s == %s\n", hostIpc, out2)
2524 2524
 	}
2525 2525
 	deleteAllContainers()
2526 2526
 
2527
-	logDone("run - hostname and several network modes")
2527
+	logDone("run - ipc host mode")
2528 2528
 }
2529 2529
 
2530 2530
 func TestRunModeIpcContainer(t *testing.T) {
... ...
@@ -2562,7 +2562,7 @@ func TestRunModeIpcContainer(t *testing.T) {
2562 2562
 	}
2563 2563
 	deleteAllContainers()
2564 2564
 
2565
-	logDone("run - hostname and several network modes")
2565
+	logDone("run - ipc container mode")
2566 2566
 }
2567 2567
 
2568 2568
 func TestContainerNetworkMode(t *testing.T) {