1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Add missing 'err' to Fatalf to help debug an issue

Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
Doug Davis 2015-07-16 20:26:54 -07:00
parent 48a01a317c
commit 97c5f64001

View file

@ -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