Browse code

Merge pull request #38182 from huangqg/fix_log

integration/network: fix log message

Kirill Kolyshkin authored on 2019/03/22 06:36:21
Showing 1 changed files
... ...
@@ -55,7 +55,7 @@ func TestRunContainerWithBridgeNone(t *testing.T) {
55 55
 
56 56
 	result, err = container.Exec(ctx, c, id3, []string{"sh", "-c", nsCommand})
57 57
 	assert.NilError(t, err)
58
-	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")
58
+	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")
59 59
 }
60 60
 
61 61
 func TestNetworkInvalidJSON(t *testing.T) {