Add missing 'err' to Fatalf to help debug an issue
Signed-off-by: Doug Davis <dug@us.ibm.com> Upstream-commit: 97c5f64001af1ac6c9035af672e45051cab55f62 Component: engine
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user