Refine error handling behavior

so that exit 1 happens as long as error is non-nil
This commit is contained in:
Dan Buch
2016-07-24 12:09:05 -04:00
parent 8ae5b3d5e2
commit e9688813e4
3 changed files with 4 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ func TestHandleExitCoder_ErrorWithoutMessage(t *testing.T) {
err := errors.New("")
HandleExitCoder(err)
expect(t, exitCode, 0)
expect(t, called, false)
expect(t, exitCode, 1)
expect(t, called, true)
expect(t, ErrWriter.(*bytes.Buffer).String(), "")
}