1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix done messages and error message for ipc tests

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2014-12-29 12:34:59 -08:00
parent 7156fb2442
commit 74ee405a27

View file

@ -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) {