Browse Source

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

Signed-off-by: Soshi Katsuta <katsuta_soshi@cyberagent.co.jp>
Soshi Katsuta 10 years ago
parent
commit
5b870d7fa6
1 changed files with 1 additions and 1 deletions
  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)
 	}
 }