mirror of https://github.com/docker/docs.git
Merge pull request #14698 from duglin/AddErr
Add missing 'err' to Fatalf to help debug an issue
This commit is contained in:
commit
ac3f7c71b8
|
@ -458,7 +458,7 @@ func (s *DockerSuite) TestInspectExecID(c *check.C) {
|
||||||
// Save execID for later
|
// Save execID for later
|
||||||
execID, err := inspectFilter(id, "index .ExecIDs 0")
|
execID, err := inspectFilter(id, "index .ExecIDs 0")
|
||||||
if err != nil {
|
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
|
// End the exec by closing its stdin, and wait for it to end
|
||||||
|
|
Loading…
Reference in New Issue