From 5b870d7fa6d65895a4be601a1e09812a4962d03d Mon Sep 17 00:00:00 2001 From: Soshi Katsuta Date: Wed, 19 Aug 2015 12:06:05 +0900 Subject: [PATCH] integration-cli: modify %s to %d in formatting an int Signed-off-by: Soshi Katsuta --- integration-cli/docker_cli_exec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_exec_test.go b/integration-cli/docker_cli_exec_test.go index e22431f854..76ae9c95dd 100644 --- a/integration-cli/docker_cli_exec_test.go +++ b/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) } }