From 97c5f64001af1ac6c9035af672e45051cab55f62 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Thu, 16 Jul 2015 20:26:54 -0700 Subject: [PATCH] Add missing 'err' to Fatalf to help debug an issue Signed-off-by: Doug Davis --- 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 2557ddf34c..64e5d03a05 100644 --- a/integration-cli/docker_cli_exec_test.go +++ b/integration-cli/docker_cli_exec_test.go @@ -458,7 +458,7 @@ func (s *DockerSuite) TestInspectExecID(c *check.C) { // Save execID for later execID, err := inspectFilter(id, "index .ExecIDs 0") if err != nil { - c.Fatalf("failed to get the exec id") + c.Fatalf("failed to get the exec id: %v", err) } // End the exec by closing its stdin, and wait for it to end