From 317f5e0edcbd205a0bc113b027f99be051d0f3fa Mon Sep 17 00:00:00 2001 From: maxwell Date: Sun, 11 Nov 2018 23:07:43 +0800 Subject: [PATCH] Fix log Signed-off-by: maxwell --- integration/network/network_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/network/network_test.go b/integration/network/network_test.go index 5f62550f05..44154e8696 100644 --- a/integration/network/network_test.go +++ b/integration/network/network_test.go @@ -56,7 +56,7 @@ func TestRunContainerWithBridgeNone(t *testing.T) { result, err = container.Exec(ctx, client, id3, []string{"sh", "-c", nsCommand}) assert.NilError(t, err) - assert.Check(t, is.Equal(stdout.String(), result.Combined()), "The network namspace of container should be the same with host when --net=host and bridge network is disabled") + assert.Check(t, is.Equal(stdout.String(), result.Combined()), "The network namespace of container should be the same with host when --net=host and bridge network is disabled") } func TestNetworkInvalidJSON(t *testing.T) {