1
0
mirror of https://github.com/moby/moby.git synced 2025-07-29 07:21:35 +03:00

Add minor vet fixes

Signed-off-by: Antonio Murdaca <runcom@linux.com>
This commit is contained in:
Antonio Murdaca
2015-07-12 19:12:48 +02:00
parent 9264d38424
commit 26ce3f4c90
3 changed files with 10 additions and 10 deletions

View File

@ -479,7 +479,7 @@ func (s *DockerSuite) TestInspectExecID(c *check.C) {
// But we should still be able to query the execID
sc, body, err := sockRequest("GET", "/exec/"+execID+"/json", nil)
if sc != http.StatusOK {
c.Fatalf("received status != 200 OK: %s\n%s", sc, body)
c.Fatalf("received status != 200 OK: %d\n%s", sc, body)
}
}