mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
remove the check of ContentLength in TestApiStatsNoStreamGetCpu
Signed-off-by: yangshukui <yangshukui@huawei.com>
This commit is contained in:
parent
b6be645197
commit
d474f7fb86
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ func (s *DockerSuite) TestApiStatsNoStreamGetCpu(c *check.C) {
|
||||||
|
|
||||||
resp, body, err := sockRequestRaw("GET", fmt.Sprintf("/containers/%s/stats?stream=false", id), nil, "")
|
resp, body, err := sockRequestRaw("GET", fmt.Sprintf("/containers/%s/stats?stream=false", id), nil, "")
|
||||||
c.Assert(err, checker.IsNil)
|
c.Assert(err, checker.IsNil)
|
||||||
c.Assert(resp.ContentLength, checker.GreaterThan, int64(0), check.Commentf("should not use chunked encoding"))
|
c.Assert(resp.StatusCode, checker.Equals, http.StatusOK)
|
||||||
c.Assert(resp.Header.Get("Content-Type"), checker.Equals, "application/json")
|
c.Assert(resp.Header.Get("Content-Type"), checker.Equals, "application/json")
|
||||||
|
|
||||||
var v *types.Stats
|
var v *types.Stats
|
||||||
|
|
Loading…
Reference in a new issue