1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

integration-cli: modify %s to %d in formatting an int

Signed-off-by: Soshi Katsuta <katsuta_soshi@cyberagent.co.jp>
This commit is contained in:
Soshi Katsuta 2015-08-19 12:06:05 +09:00
parent aacb47d628
commit 5b870d7fa6

View file

@ -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)
}
}