瀏覽代碼

Merge pull request #15683 from skatsuta/cli-exec-test-printf-int

integration-cli: modify %s to %d in formatting an int
Brian Goff 10 年之前
父節點
當前提交
b8c319996f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration-cli/docker_cli_exec_test.go

+ 1 - 1
integration-cli/docker_cli_exec_test.go

@@ -385,7 +385,7 @@ func (s *DockerSuite) TestInspectExecID(c *check.C) {
 	}
 	sc, body, err = sockRequest("GET", "/exec/"+execID+"/json", nil)
 	if sc != http.StatusNotFound {
-		c.Fatalf("received status != 404: %s\n%s", sc, body)
+		c.Fatalf("received status != 404: %d\n%s", sc, body)
 	}
 }