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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
internal/textutils/inspect_test.go:26:6: err113: do not compare errors directly "got != want", use "!errors.Is(got, want)" instead (goerr113) if got != want { ^ internal/textutils/inspect_test.go:45:6: err113: do not compare errors directly "got != want", use "!errors.Is(got, want)" instead (goerr113) if got != want { ^
The text was updated successfully, but these errors were encountered:
Use errors.Is() to replace direct errors compare
e670e14
Fix err113 linter warning re comparing errors directly by using `errors.Is()` in tests. refs GH-274
73e746e
atc0005
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: