We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In some cases, due to my lazy format implementation, you get no useful strings out of a Fault:
<fctx> .../db.go:419 <fctx> .../db.go:227
This I noticed when using assert.NoError(t, err) where err is a Fault chain.
assert.NoError(t, err)
err
Should be a simple fix, it seems NoError uses %+v when printing the error, same as panic does and others.
%+v
panic
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some cases, due to my lazy format implementation, you get no useful strings out of a Fault:
This I noticed when using
assert.NoError(t, err)
whereerr
is a Fault chain.Should be a simple fix, it seems NoError uses
%+v
when printing the error, same aspanic
does and others.The text was updated successfully, but these errors were encountered: