瀏覽代碼

Merge pull request #38182 from huangqg/fix_log

integration/network: fix log message
Kirill Kolyshkin 6 年之前
父節點
當前提交
3764bd9e98
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration/network/network_test.go

+ 1 - 1
integration/network/network_test.go

@@ -55,7 +55,7 @@ func TestRunContainerWithBridgeNone(t *testing.T) {
 
 	result, err = container.Exec(ctx, c, 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) {