From 9601f4ac9645bcbfb2989fec00661073a1592124 Mon Sep 17 00:00:00 2001 From: DiSiqueira Date: Sat, 28 Jan 2017 17:08:30 -0200 Subject: [PATCH] I found out this err var isn't being used, so underscoring it to preserve resources Signed-off-by: DiSiqueira Upstream-commit: 4bd1895241b7ad750f22b0ff18fd9a3eacfdb362 Component: engine --- components/engine/integration-cli/docker_cli_exec_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/engine/integration-cli/docker_cli_exec_test.go b/components/engine/integration-cli/docker_cli_exec_test.go index e1b85d6469..56cef106be 100644 --- a/components/engine/integration-cli/docker_cli_exec_test.go +++ b/components/engine/integration-cli/docker_cli_exec_test.go @@ -356,7 +356,8 @@ func (s *DockerSuite) TestExecInspectID(c *check.C) { } // But we should still be able to query the execID - sc, body, err := request.SockRequest("GET", "/exec/"+execID+"/json", nil, daemonHost()) + sc, body, _ := request.SockRequest("GET", "/exec/"+execID+"/json", nil, daemonHost()) + c.Assert(sc, checker.Equals, http.StatusOK, check.Commentf("received status != 200 OK: %d\n%s", sc, body)) // Now delete the container and then an 'inspect' on the exec should