Skip to content
New issue

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

Run Linter testifylint.yaml For Top 1w github golang repo #2

Closed
alingse opened this issue May 28, 2024 · 242 comments
Closed

Run Linter testifylint.yaml For Top 1w github golang repo #2

alingse opened this issue May 28, 2024 · 242 comments

Comments

@alingse
Copy link
Owner

alingse commented May 28, 2024

https://github.com/alingse/go-linter-runner/blob/main/jobs/testifylint.yaml

name: testifylint
linter: testifylint
workdir: .
install: go install github.com/Antonboom/testifylint@latest
includes: []
excludes: []

the failed actions https://github.com/alingse/go-linter-runner/actions?query=is%3Afailure

Copy link

Run testifylint on Repo: https://github.com/fatedier/frp got output

https://github.com/fatedier/frp/blob/dev/pkg/config/v1/client_test.go#L30:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/config/v1/client_test.go#L31:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/config/v1/client_test.go#L32:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/config/v1/client_test.go#L33:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/config/v1/server_test.go#L30:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/config/v1/server_test.go#L31:2: bool-compare: use require.True
https://github.com/fatedier/frp/blob/dev/pkg/proto/udp/udp_test.go#L16:2: require-error: for error assertions use require
https://github.com/fatedier/frp/blob/dev/pkg/util/metric/date_counter_test.go#L20:2: len: use assert.Len
https://github.com/fatedier/frp/blob/dev/pkg/util/util/util_test.go#L14:2: len: use assert.Len
https://github.com/fatedier/frp/blob/dev/pkg/util/util/util_test.go#L12:2: require-error: for error assertions use require
https://github.com/fatedier/frp/blob/dev/pkg/util/vhost/https_test.go#L22:3: go-require: require must only be used in the goroutine running the test function

Report issue: https://github.com/fatedier/frp/issues

Copy link

Run testifylint on Repo: https://github.com/gin-gonic/gin got output

https://github.com/gin-gonic/gin/blob/master/context_test.go#L177:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L180:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L233:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L235:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L236:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L237:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/context_test.go#L238:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/context_test.go#L239:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L281:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/context_test.go#L347:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L352:2: compares: use assert.NotEqual
https://github.com/gin-gonic/gin/blob/master/context_test.go#L369:2: len: use assert.Len
https://github.com/gin-gonic/gin/blob/master/context_test.go#L428:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/context_test.go#L551:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L554:2: len: use assert.Len
https://github.com/gin-gonic/gin/blob/master/context_test.go#L564:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L568:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L572:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L579:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L651:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L654:2: len: use assert.Len
https://github.com/gin-gonic/gin/blob/master/context_test.go#L664:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L671:2: empty: use assert.Empty
https://github.com/gin-gonic/gin/blob/master/context_test.go#L801:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1324:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1352:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1353:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1354:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1355:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1356:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1357:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1363:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1364:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1365:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1366:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1367:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1368:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2391:4: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2422:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2471:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2688:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2837:2: bool-compare: use assert.True
https://github.com/gin-gonic/gin/blob/master/debug_test.go#L157:2: error-nil: use assert.Error
https://github.com/gin-gonic/gin/blob/master/debug_test.go#L160:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/debug_test.go#L162:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/debug_test.go#L165:2: error-nil: use assert.Error
https://github.com/gin-gonic/gin/blob/master/errors_test.go#L125:2: error-is-as: use assert.ErrorIs
https://github.com/gin-gonic/gin/blob/master/errors_test.go#L127:2: error-is-as: use assert.ErrorAs
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L676:3: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L299:3: compares: use assert.NotEqual
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L300:3: compares: use assert.NotEqual
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L321:3: compares: use assert.NotEqual
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L322:3: compares: use assert.NotEqual
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L332:2: bool-compare: use assert.True
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L335:2: bool-compare: use assert.True
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L338:2: bool-compare: use assert.False
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L346:2: bool-compare: use assert.False
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L349:2: bool-compare: use assert.True
https://github.com/gin-gonic/gin/blob/master/logger_test.go#L352:2: bool-compare: use assert.False
https://github.com/gin-gonic/gin/blob/master/path_test.go#L90:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/routes_test.go#L487:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/utils_test.go#L148:2: bool-compare: use assert.True
https://github.com/gin-gonic/gin/blob/master/utils_test.go#L149:2: bool-compare: use assert.False
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2320:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2325:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2330:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2335:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L102:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1710:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1772:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1925:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1672:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/response_writer_test.go#L138:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1163:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L76:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1880:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1859:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L297:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L299:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L321:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L289:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L240:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L204:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1447:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2059:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2062:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2075:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2078:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1789:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1998:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L534:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L298:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L167:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1842:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1944:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L43:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L47:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/routes_test.go#L424:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2419:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L422:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L260:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/githubapi_test.go#L320:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L219:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L368:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L370:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L597:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1963:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1689:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/response_writer_test.go#L98:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/routes_test.go#L389:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/fs_test.go#L55:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1824:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1806:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/fs_test.go#L46:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L583:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L591:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L600:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L608:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L616:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L624:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L632:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L640:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L656:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L668:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/fs_test.go#L31:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2390:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2395:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2400:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2405:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2410:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1755:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1980:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2256:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2261:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2266:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2271:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2191:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2196:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2201:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2206:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L341:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L343:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_integration_test.go#L353:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L109:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1725:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1735:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1895:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L1905:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L550:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/gin_test.go#L553:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2127:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2132:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2137:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/context_test.go#L2142:4: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L641:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L667:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L668:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L669:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L695:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L697:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L835:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L836:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1126:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1280:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1362:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1378:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1382:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1401:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L116:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L117:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L118:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L119:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L166:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L167:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L215:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L216:2: expected-actual: need to reverse actual and expected values
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L242:2: error-nil: use assert.NoError
https://github.com/gin-gonic/gin/blob/master/binding/validate_test.go#L249:2: error-nil: use assert.Error
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L640:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L598:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L865:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L88:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L111:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L174:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L183:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L198:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L431:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L440:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L694:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1097:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1103:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1107:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1116:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1125:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1130:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1134:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1141:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1146:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L99:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L317:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L612:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L630:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1077:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1394:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1400:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L141:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L512:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L519:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1043:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L76:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L971:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L122:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L584:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L908:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L911:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1297:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1303:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L56:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L560:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L563:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L565:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L568:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L150:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L230:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L235:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L947:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1025:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L683:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1232:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1242:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1258:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1261:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L109:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L112:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L116:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L119:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L505:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L782:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L806:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L813:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1329:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L132:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L250:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L254:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L259:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L445:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L130:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L133:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1058:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L159:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L357:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L495:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1007:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L834:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1165:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L456:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_msgpack_test.go#L44:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L885:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1217:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/multipart_form_mapping_test.go#L30:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L62:3: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L347:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L498:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L408:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_msgpack_test.go#L27:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L620:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L655:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1277:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1313:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L274:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L535:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L538:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L540:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L543:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1361:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1366:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1371:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1375:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L396:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L849:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L989:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L420:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L379:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/binding_test.go#L1202:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L215:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L292:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L298:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L305:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L384:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/binding/form_mapping_test.go#L507:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L591:2: error-nil: use assert.Error
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L61:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L86:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L98:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L337:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L342:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L467:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L194:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L365:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L483:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L551:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L438:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_msgpack_test.go#L32:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_msgpack_test.go#L40:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L314:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L372:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L382:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L404:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L419:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L123:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L135:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L218:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L226:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L451:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L521:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L39:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L245:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L574:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L286:2: require-error: for error assertions use require
https://github.com/gin-gonic/gin/blob/master/render/render_test.go#L502:2: require-error: for error assertions use require

Report issue: https://github.com/gin-gonic/gin/issues

Copy link

Run testifylint on Repo: https://github.com/ollama/ollama got output

llm/llm_linux.go#L5:12: pattern build/linux/*/*/bin/*: no matching files found
https://github.com/ollama/ollama/blob/main/llm/llm.go#L12:8: could not import C (no metadata for C)
-: # github.com/ollama/ollama/llm
# [github.com/ollama/ollama/llm]
llm/llm.go#L11:11: fatal error: llama.h: No such file or directory
11 | // #include "llama.h"
|           ^~~~~~~~~
compilation terminated.
https://github.com/ollama/ollama/blob/main/llm/llm.go#L12:8: could not import C (no metadata for C)
testifylint: 4 errors during loading

Report issue: https://github.com/ollama/ollama/issues

Copy link

Run testifylint on Repo: https://github.com/nektos/act got output

https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L201:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L283:3: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L299:3: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L302:3: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L308:5: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/artifacts/server_test.go#L310:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L18:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L24:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L30:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L44:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L51:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L60:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/cartesian_test.go#L34:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/common/cartesian_test.go#L38:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L19:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L23:2: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L36:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L58:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L72:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L102:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L113:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/common/executor_test.go#L151:2: error-is-as: invalid usage of assert.Error, use assert.ErrorIs instead
https://github.com/nektos/act/blob/master/pkg/common/line_writer_test.go#L21:3: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/auth_test.go#L37:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L82:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L84:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L88:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L91:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L96:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L98:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L217:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L262:3: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/common/git/git_test.go#L42:3: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L28:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L29:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L33:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L34:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L38:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L46:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L49:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L52:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L53:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L59:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L62:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L65:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_images_test.go#L66:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/container/docker_pull_test.go#L43:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_pull_test.go#L51:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_pull_test.go#L59:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L28:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L41:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L57:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L72:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L86:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L87:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L111:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L112:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L127:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L146:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L148:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L23:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L32:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L49:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L56:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_socket_test.go#L100:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L169:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L20:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L139:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L41:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L58:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L60:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L64:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/host_environment_test.go#L67:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L216:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/container/docker_run_test.go#L241:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L41:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L70:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L99:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L126:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L152:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L175:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L203:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L205:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/functions_test.go#L246:5: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L33:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L103:5: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L106:5: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L155:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L518:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/exprparser/interpreter_test.go#L622:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L127:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L129:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L132:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L135:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L139:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L141:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L157:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L108:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/filecollector/file_collector_test.go#L113:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/planner_test.go#L56:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L88:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L106:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L202:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L206:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L210:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L214:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L218:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L222:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L247:2: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L251:2: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L255:2: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L259:2: error-nil: use assert.Error
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L287:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L288:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L289:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L290:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L291:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L343:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L344:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L351:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L353:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L354:2: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L359:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L361:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L362:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L367:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L369:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L370:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L375:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L385:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L400:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L401:2: bool-compare: use assert.False
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L416:4: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L242:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L284:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L426:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L435:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L444:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L454:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L463:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L475:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L487:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L509:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L23:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L42:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L198:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L338:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L341:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L350:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L358:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L366:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L374:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L87:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/planner_test.go#L31:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L68:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L105:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L130:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L160:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/model/workflow_test.go#L323:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/action_test.go#L135:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/action_test.go#L245:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/job_executor_test.go#L332:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L166:4: formatter: remove unnecessary fmt.Sprintf
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L349:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L390:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L391:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L392:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L396:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L398:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L705:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L730:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L86:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L99:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L113:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L133:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L147:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L148:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L149:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L150:2: len: use assert.Len
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L151:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L152:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L153:2: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L158:2: empty: use assert.Empty
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L176:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L196:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L199:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L202:2: compares: use assert.NotEqual
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L206:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_local_test.go#L95:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_local_test.go#L98:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_local_test.go#L289:4: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L267:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L268:4: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L337:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L338:4: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L408:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L409:4: bool-compare: use assert.True
https://github.com/nektos/act/blob/master/pkg/runner/step_action_remote_test.go#L613:4: expected-actual: need to reverse actual and expected values
https://github.com/nektos/act/blob/master/pkg/runner/step_docker_test.go#L99:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_docker_test.go#L111:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_docker_test.go#L114:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_factory_test.go#L65:4: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_run_test.go#L80:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_run_test.go#L90:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_run_test.go#L93:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L155:2: error-nil: use assert.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L315:2: error-nil: use assertObject.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L321:2: error-nil: use assertObject.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L327:2: error-nil: use assertObject.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L333:2: error-nil: use assertObject.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L339:2: error-nil: use assertObject.NoError
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L345:2: error-nil: use assertObject.Error
https://github.com/nektos/act/blob/master/pkg/runner/expression_test.go#L146:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/expression_test.go#L149:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/expression_test.go#L186:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/expression_test.go#L189:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L56:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L64:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L69:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L141:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L144:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L156:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L104:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L114:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L28:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L123:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L131:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L208:4: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L94:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L97:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L76:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L84:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L579:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/runner_test.go#L581:2: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L314:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L200:3: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/step_test.go#L282:3: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/run_context_test.go#L163:5: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/action_cache_test.go#L57:8: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/action_cache_test.go#L61:8: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/action_cache_test.go#L66:8: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/runner/action_cache_test.go#L72:4: require-error: for error assertions use require
https://github.com/nektos/act/blob/master/pkg/workflowpattern/workflow_pattern_test.go#L408:4: require-error: for error assertions use require

Report issue: https://github.com/nektos/act/issues

Copy link

Run testifylint on Repo: https://github.com/syncthing/syncthing got output

-: # github.com/syncthing/syncthing/cmd/strelaypoolsrv
cmd/strelaypoolsrv/main.go#L283:17: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/cmd/strelaypoolsrv/main.go#L283:17: undefined: auto.Assets
-: # github.com/syncthing/syncthing/lib/api
lib/api/api_statics.go#L38:25: undefined: auto.Assets
lib/api/api_statics.go#L46:25: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/lib/api/api_statics.go#L38:25: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/lib/api/api_statics.go#L46:25: undefined: auto.Assets
-: # github.com/syncthing/syncthing/cmd/strelaypoolsrv [github.com/syncthing/syncthing/cmd/strelaypoolsrv.test]
cmd/strelaypoolsrv/main.go#L283:17: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/cmd/strelaypoolsrv/main.go#L283:17: undefined: auto.Assets
-: # github.com/syncthing/syncthing/lib/api [github.com/syncthing/syncthing/lib/api.test]
lib/api/api_statics.go#L38:25: undefined: auto.Assets
lib/api/api_statics.go#L46:25: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/lib/api/api_statics.go#L38:25: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/lib/api/api_statics.go#L46:25: undefined: auto.Assets
-: # github.com/syncthing/syncthing/lib/api/auto_test [github.com/syncthing/syncthing/lib/api/auto.test]
lib/api/auto/auto_test.go#L20:17: undefined: auto.Assets
https://github.com/syncthing/syncthing/blob/main/lib/api/auto/auto_test.go#L20:17: undefined: auto.Assets
testifylint: 12 errors during loading

Report issue: https://github.com/syncthing/syncthing/issues

Copy link

Run testifylint on Repo: https://github.com/caddyserver/caddy got output

https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L153:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L161:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L170:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L179:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L188:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L197:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L206:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L218:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L219:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L220:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L232:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L244:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L256:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L276:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L296:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L317:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L339:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L359:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L380:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L402:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L424:2: expected-actual: need to reverse actual and expected values
https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/server_test.go#L446:2: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/caddyserver/caddy/issues

Copy link

Run testifylint on Repo: https://github.com/jesseduffield/lazygit got output

https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/flow_test.go#L29:4: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/flow_test.go#L82:6: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/flow_test.go#L86:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/git_command_builder_test.go#L54:3: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/repo_paths_test.go#L131:5: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L23:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L31:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L39:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L51:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L64:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L77:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L118:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L119:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L127:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L128:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L156:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L157:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L165:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L166:5: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/working_tree_test.go#L197:5: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L223:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L94:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L25:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L59:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L63:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L269:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L241:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L144:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L143:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/working_tree_test.go#L30:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L43:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L156:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L129:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L82:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L16:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/version_test.go#L31:3: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L49:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L228:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L48:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L110:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L114:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/rebase_test.go#L102:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/worktree_loader_test.go#L210:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/branch_test.go#L257:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L81:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L99:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/stash_test.go#L34:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/working_tree_test.go#L387:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L36:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/file_test.go#L157:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L296:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/working_tree_test.go#L20:2: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/flow_test.go#L85:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/repo_paths_test.go#L128:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/sync_test.go#L90:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L363:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/git_commands/commit_test.go#L338:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L28:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L132:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L351:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L123:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L171:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L180:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L388:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L37:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L46:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L55:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L162:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L209:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L303:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L409:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L65:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L75:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L95:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L114:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L85:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L290:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L399:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L105:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L190:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L276:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L317:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L142:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L152:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L338:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L263:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L375:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L199:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L222:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L236:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/hosting_service/hosting_service_test.go#L249:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/commands/oscommands/os_default_test.go#L23:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/services/custom_commands/menu_generator_test.go#L28:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/services/custom_commands/menu_generator_test.go#L40:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/services/custom_commands/menu_generator_test.go#L52:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/services/custom_commands/menu_generator_test.go#L64:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/services/custom_commands/menu_generator_test.go#L76:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/style/style_test.go#L216:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/gui/style/style_test.go#L220:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/integration/components/test_test.go#L175:4: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L13:2: empty: use assert.Empty
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L23:2: len: use assert.Len
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L34:2: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L38:2: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L42:2: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L46:2: error-nil: use assert.NoError
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L50:2: error-nil: use assert.Error
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L54:2: error-nil: use assert.Error
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/history_buffer_test.go#L62:2: error-nil: use assert.Error
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/search_test.go#L96:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/slice_test.go#L170:46: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/slice_test.go#L228:49: expected-actual: need to reverse actual and expected values
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L127:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L129:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L253:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L255:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/lines_test.go#L163:3: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L424:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L426:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L369:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/rebase_todo_test.go#L371:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L108:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L110:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L193:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L195:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L249:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazygit/blob/master/pkg/utils/yaml_utils/yaml_utils_test.go#L312:4: require-error: for error assertions use require

Report issue: https://github.com/jesseduffield/lazygit/issues

Copy link

Run testifylint on Repo: https://github.com/v2ray/v2ray-core got output

https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L34:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L52:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L78:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L91:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L110:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L125:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L47:2: error-nil: use assert.NoError
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L68:3: bool-compare: use assert.True
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L69:3: error-nil: use assert.Error
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L98:4: bool-compare: use assert.True
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L99:4: error-nil: use assert.Error
https://github.com/v2ray/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L58:2: require-error: for error assertions use require

Report issue: https://github.com/v2ray/v2ray-core/issues

Copy link

Run testifylint on Repo: https://github.com/gogs/gogs got output

https://github.com/gogs/gogs/blob/main/internal/avatar/avatar_test.go#L15:2: require-error: for error assertions use require
https://github.com/gogs/gogs/blob/main/internal/conf/conf_test.go#L25:2: error-nil: use assert.NoError
https://github.com/gogs/gogs/blob/main/internal/conf/log_test.go#L27:3: error-nil: use assert.Error
https://github.com/gogs/gogs/blob/main/internal/database/access_tokens_test.go#L135:2: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/access_tokens_test.go#L213:2: len: use require.Len
https://github.com/gogs/gogs/blob/main/internal/database/lfs_test.go#L98:2: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/login_source_files_test.go#L57:3: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/login_source_files_test.go#L62:3: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/login_sources_test.go#L396:2: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/login_sources_test.go#L401:2: len: use assert.Len
https://github.com/gogs/gogs/blob/main/internal/database/notices_test.go#L147:2: compares: use assert.Greater
https://github.com/gogs/gogs/blob/main/internal/database/repositories_test.go#L184:3: empty: use require.Empty
https://github.com/gogs/gogs/blob/main/internal/database/users_test.go#L343:2: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/gogs/gogs/issues

Copy link

Run testifylint on Repo: https://github.com/cli/cli got output

https://github.com/cli/cli/blob/trunk/api/queries_projects_v2_test.go#L222:8: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/api/client_test.go#L241:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/client_test.go#L245:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/queries_repo_test.go#L532:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/client_test.go#L104:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/client_test.go#L106:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/queries_pr_test.go#L133:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/queries_projects_v2_test.go#L146:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/queries_projects_v2_test.go#L148:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/api/client_test.go#L39:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/context/remote_test.go#L136:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/context/remote_test.go#L20:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/context/remote_test.go#L24:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/context/remote_test.go#L86:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/context/remote_test.go#L89:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L120:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/git/client_test.go#L157:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/git/client_test.go#L178:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/git/client_test.go#L847:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1363:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/git/client_test.go#L86:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L147:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L149:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L151:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L156:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L53:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1307:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1309:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L412:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L414:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L964:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L966:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L110:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L112:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L114:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L119:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L324:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L326:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L365:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1424:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L695:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L705:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1007:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L1009:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/git/client_test.go#L457:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/internal/config/migrate_test.go#L173:2: empty: use require.Empty
https://github.com/cli/cli/blob/trunk/internal/featuredetection/feature_detection_test.go#L70:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/internal/featuredetection/feature_detection_test.go#L250:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/internal/featuredetection/feature_detection_test.go#L346:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/internal/text/text_test.go#L52:3: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L173:5: empty: use assert.Empty
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L177:5: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L65:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L80:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L171:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/delete/delete_test.go#L175:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/imports/import_test.go#L85:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/imports/import_test.go#L102:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L296:5: empty: use assert.Empty
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L300:5: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L352:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L344:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L350:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L72:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L89:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L294:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/alias/set/set_test.go#L298:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L997:2: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1004:2: bool-compare: use assert.True
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1068:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1100:2: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1107:2: bool-compare: use assert.True
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1196:2: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1203:2: bool-compare: use assert.True
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L899:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L754:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L1761:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L826:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L380:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/api/api_test.go#L390:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L63:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L65:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L70:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L72:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L83:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L85:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L92:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L100:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L102:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L107:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L109:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L122:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/api/client_test.go#L129:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/artifact/digest/digest_test.go#L19:3: error-nil: use assert.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/artifact/digest/digest_test.go#L26:3: error-nil: use assert.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/artifact/digest/digest_test.go#L34:3: error-is-as: second argument to require.ErrorAs should not be *error
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/download/download_test.go#L312:3: error-is-as: second argument to require.ErrorAs should not be *error
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/download/download_test.go#L166:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/inspect/bundle_test.go#L16:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/inspect/inspect_test.go#L155:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/inspect/inspect_test.go#L182:2: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/inspect/inspect_test.go#L132:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verification/attestation_test.go#L101:2: empty: use require.Empty
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L286:2: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L310:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L340:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L348:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L399:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L419:3: error-nil: use require.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/attestation/verify/verify_test.go#L219:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/login/login_test.go#L248:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/login/login_test.go#L268:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/login/login_test.go#L477:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/login/login_test.go#L479:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/setupgit/setupgit_test.go#L188:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/shared/oauth_scopes_test.go#L55:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/shared/login_flow_test.go#L275:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/shared/login_flow_test.go#L277:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/shared/oauth_scopes_test.go#L51:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/shared/oauth_scopes_test.go#L53:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/status/status_test.go#L421:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/status/status_test.go#L54:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/auth/status/status_test.go#L71:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/browse/browse_test.go#L198:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/browse/browse_test.go#L208:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/browse/browse_test.go#L599:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/browse/browse_test.go#L601:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/delete/delete_test.go#L57:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/delete/delete_test.go#L73:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/delete/delete_test.go#L213:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/delete/delete_test.go#L215:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/delete/delete_test.go#L218:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/list/list_test.go#L295:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/list/list_test.go#L297:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/list/list_test.go#L300:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/list/list_test.go#L103:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/list/list_test.go#L119:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/shared/shared_test.go#L71:4: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/shared/shared_test.go#L68:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/cache/shared/shared_test.go#L70:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/codespace/create_test.go#L53:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/codespace/list_test.go#L58:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/codespace/create_test.go#L648:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/clear-cache/clear_cache_test.go#L29:2: formatter: remove unnecessary fmt.Sprintf
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/get/get_test.go#L52:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/get/get_test.go#L72:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/list/list_test.go#L46:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/list/list_test.go#L66:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L180:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L183:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L186:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L189:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L192:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L195:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L59:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L79:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L149:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L163:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L166:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L169:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/config/set/set_test.go#L172:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L66:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L103:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L139:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L165:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L193:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L231:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L234:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L248:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L264:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L278:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L295:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L330:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L347:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L349:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L366:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L383:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L399:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L418:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L434:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L450:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L467:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L469:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L486:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L503:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L518:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L534:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L550:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L566:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L584:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L598:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L639:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L672:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L704:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L734:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L764:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L780:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L797:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L821:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L823:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L847:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L849:6: empty: use assert.Empty
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L851:6: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L89:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L131:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L200:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L248:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L285:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L313:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L329:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L348:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L372:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L397:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L421:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L522:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L587:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L646:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L685:2: error-nil: use assert.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L686:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L690:2: error-nil: use assert.Error
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L709:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L716:2: error-nil: use assert.Error
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1102:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L284:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L291:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L339:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L347:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L353:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L909:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1035:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L175:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L182:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L954:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L957:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L961:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L972:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L196:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L199:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L911:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L913:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L101:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L130:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L411:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L420:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L461:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L467:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L471:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L482:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L697:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L708:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L799:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L845:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L848:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L852:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L864:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1008:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1021:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1023:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L217:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L223:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L557:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L586:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L591:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L594:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L598:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L609:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/extension_test.go#L78:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L755:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1084:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1098:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1101:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1105:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L1109:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L307:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L312:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L315:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L620:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L645:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L650:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L653:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L657:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/extension_test.go#L58:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L247:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L254:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L493:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L521:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L526:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L529:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L533:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L544:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L672:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L209:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L322:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L328:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L331:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L387:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L396:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L402:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L141:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L151:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/command_test.go#L30:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L363:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L371:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/manager_test.go#L377:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/browse/browse_test.go#L63:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/extension/browse/browse_test.go#L152:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/factory/remote_resolver_test.go#L282:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/factory/default_test.go#L100:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/factory/default_test.go#L248:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/factory/default_test.go#L316:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/create/create_test.go#L33:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/create/create_test.go#L142:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/create/create_test.go#L159:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/create/create_test.go#L170:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/create/create_test.go#L172:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/delete/delete_test.go#L117:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/delete/delete_test.go#L37:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/delete/delete_test.go#L50:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/edit/edit_test.go#L110:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/edit/edit_test.go#L575:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/list/list_test.go#L389:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/list/list_test.go#L391:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/list/list_test.go#L80:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/list/list_test.go#L93:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/rename/rename_test.go#L65:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/rename/rename_test.go#L81:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/rename/rename_test.go#L181:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/shared/shared_test.go#L49:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/shared/shared_test.go#L53:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/shared/shared_test.go#L189:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/view/view_test.go#L388:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/view/view_test.go#L90:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gist/view/view_test.go#L103:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/add/add_test.go#L139:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/delete/delete_test.go#L85:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/delete/delete_test.go#L99:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/delete/delete_test.go#L103:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/delete/delete_test.go#L217:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/delete/delete_test.go#L221:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/list/list_test.go#L137:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/gpg-key/list/list_test.go#L139:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L184:8: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L212:8: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L69:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L82:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L87:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/close/close_test.go#L277:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/comment/comment_test.go#L335:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/comment/comment_test.go#L161:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/comment/comment_test.go#L181:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L420:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L421:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L422:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L546:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L547:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L548:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L871:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L492:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L502:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/create/create_test.go#L505:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/delete/delete_test.go#L78:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/delete/delete_test.go#L113:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L216:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L244:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L278:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L341:8: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L133:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L150:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/develop/develop_test.go#L576:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/edit/edit_test.go#L568:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/edit/edit_test.go#L570:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/edit/edit_test.go#L254:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/edit/edit_test.go#L274:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/http_test.go#L146:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L521:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L527:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L533:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L596:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L602:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L608:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L157:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/list/list_test.go#L136:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/lock/lock_test.go#L86:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/lock/lock_test.go#L98:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/lock/lock_test.go#L146:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/lock/lock_test.go#L158:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/lock/lock_test.go#L672:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/pin/pin_test.go#L105:8: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/pin/pin_test.go#L56:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/pin/pin_test.go#L69:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/pin/pin_test.go#L74:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/pin/pin_test.go#L154:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/reopen/reopen_test.go#L75:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/reopen/reopen_test.go#L176:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/shared/lookup_test.go#L300:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/shared/lookup_test.go#L304:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/transfer/transfer_test.go#L139:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/transfer/transfer_test.go#L140:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/transfer/transfer_test.go#L80:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/transfer/transfer_test.go#L93:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/unpin/unpin_test.go#L105:8: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/unpin/unpin_test.go#L56:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/unpin/unpin_test.go#L69:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/unpin/unpin_test.go#L74:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/unpin/unpin_test.go#L154:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/view/view_test.go#L254:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/view/view_test.go#L460:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/issue/view/view_test.go#L384:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L503:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L530:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/http_test.go#L71:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L164:4: useless-assert: asserting of the same variable
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L344:7: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/edit_test.go#L65:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/edit_test.go#L82:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/delete_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/delete_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L577:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L579:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/http_test.go#L68:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/clone_test.go#L74:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/edit_test.go#L162:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/edit_test.go#L164:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/create_test.go#L157:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/create_test.go#L163:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/delete_test.go#L178:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L382:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L384:6: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L387:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/create_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/create_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L144:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/label/list_test.go#L161:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/org/list/list_test.go#L234:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/org/list/list_test.go#L56:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/org/list/list_test.go#L74:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L401:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L483:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L381:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L504:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L284:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L305:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L461:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L523:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L337:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L361:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L437:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checkout/checkout_test.go#L421:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checks/checks_test.go#L604:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checks/checks_test.go#L606:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checks/checks_test.go#L99:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checks/checks_test.go#L116:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/checks/checks_test.go#L656:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L119:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L156:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L190:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L222:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L257:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L302:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L170:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L201:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L237:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L139:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L307:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L270:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/close/close_test.go#L124:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/comment/comment_test.go#L181:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/comment/comment_test.go#L201:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/comment/comment_test.go#L355:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L560:7: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L610:7: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L666:7: bool-compare: use assert.False
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L1081:7: bool-compare: use assert.True
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L620:7: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L1452:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/regexp_writer_test.go#L153:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L1171:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L1178:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/create/create_test.go#L1180:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/diff/diff_test.go#L248:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/edit/edit_test.go#L483:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/edit/edit_test.go#L276:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/edit/edit_test.go#L296:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L385:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L391:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L397:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L455:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L461:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L467:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/list/list_test.go#L128:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L547:4: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1541:2: error-nil: use assert.NoError
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1614:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L401:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L368:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1466:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1576:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1649:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1097:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/merge/merge_test.go#L1438:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L138:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L180:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L202:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L219:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L185:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L160:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/ready/ready_test.go#L143:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L67:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L137:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L89:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L106:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L142:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/reopen/reopen_test.go#L72:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L270:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L271:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L317:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L318:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L253:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L282:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/review/review_test.go#L329:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/finder_test.go#L466:8: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L110:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L111:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L55:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L62:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L105:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L112:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L213:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/templates_test.go#L215:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L97:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L100:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/preserve_test.go#L106:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/survey_test.go#L117:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/shared/survey_test.go#L72:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/view/view_test.go#L814:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/pr/view/view_test.go#L703:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L355:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L449:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L546:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L67:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L78:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L82:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L180:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/close/close_test.go#L274:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L88:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L99:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L103:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L233:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L354:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L456:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/copy/copy_test.go#L581:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L213:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L272:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L343:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L58:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L69:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L73:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/create/create_test.go#L145:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L169:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L261:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L343:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L435:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L60:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L71:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/delete/delete_test.go#L75:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L606:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L105:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L116:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L120:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L225:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L323:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L411:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/edit/edit_test.go#L506:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L92:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L103:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L107:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L380:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L462:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L626:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L721:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L205:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L298:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-create/field_create_test.go#L544:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-delete/field_delete_test.go#L56:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-delete/field_delete_test.go#L67:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-delete/field_delete_test.go#L71:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-delete/field_delete_test.go#L111:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-delete/field_delete_test.go#L152:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L604:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L66:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L81:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L177:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L271:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L363:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/field-list/field_list_test.go#L445:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L420:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L536:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L89:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L93:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L208:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-add/item_add_test.go#L319:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L288:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L369:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L460:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L729:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L86:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L97:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L101:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L197:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L552:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-archive/item_archive_test.go#L633:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L368:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L463:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L86:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L97:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L101:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L195:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-create/item_create_test.go#L286:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L89:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L93:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L185:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L274:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L353:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-delete/item_delete_test.go#L442:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L145:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L152:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L247:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L393:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L442:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L532:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L572:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L197:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L296:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L346:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L465:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L128:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L139:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-edit/item_edit_test.go#L143:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L409:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L506:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L615:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L67:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L78:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L82:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L193:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/item-list/item_list_test.go#L302:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L671:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L721:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L167:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L245:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L964:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L395:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L808:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L847:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L542:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L69:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L80:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L463:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L324:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L768:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/list/list_test.go#L887:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L68:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L79:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L83:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L177:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L270:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/mark-template/mark_template_test.go#L366:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L428:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L429:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L425:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L214:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L321:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L360:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L60:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L285:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L267:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L102:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L124:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L136:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L173:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L271:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L110:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L213:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L26:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L47:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L186:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L200:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/export_data_test.go#L87:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L163:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/shared/queries/queries_test.go#L320:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L453:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L528:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L745:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L69:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L80:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/project/view/view_test.go#L375:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/create/create_test.go#L1741:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/create/create_test.go#L1744:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L153:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L165:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L376:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L395:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L500:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L504:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L506:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L509:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L511:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L542:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L544:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L548:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/release/download/download_test.go#L550:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/archive/archive_test.go#L157:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/archive/archive_test.go#L45:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/archive/archive_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/clone/clone_test.go#L87:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/create/http_test.go#L696:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/create/create_test.go#L859:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/create/create_test.go#L863:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/create/create_test.go#L170:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/delete/delete_test.go#L200:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/delete/delete_test.go#L204:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/delete/delete_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/delete/delete_test.go#L74:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/delete/delete_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/deploy-key/delete/delete_test.go#L36:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/edit/edit_test.go#L105:7: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/edit/edit_test.go#L125:7: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/edit/edit_test.go#L142:7: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/edit/edit_test.go#L57:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/fork/fork_test.go#L161:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/fork/fork_test.go#L175:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/fork/fork_test.go#L179:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/fork/fork_test.go#L788:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/http_test.go#L55:2: bool-compare: use assert.True
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/http_test.go#L59:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L404:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L340:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L490:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L381:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L453:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/list/list_test.go#L244:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/rename/rename_test.go#L271:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/rename/rename_test.go#L85:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/rename/rename_test.go#L101:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/setdefault/setdefault_test.go#L500:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/setdefault/setdefault_test.go#L100:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/setdefault/setdefault_test.go#L114:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/sync/sync_test.go#L76:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/sync/sync_test.go#L89:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/sync/sync_test.go#L94:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/unarchive/unarchive_test.go#L45:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/unarchive/unarchive_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/unarchive/unarchive_test.go#L163:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/view/view_test.go#L661:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/view/view_test.go#L75:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/repo/view/view_test.go#L92:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/root/help_topic_test.go#L84:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/root/alias_test.go#L69:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/root/alias_test.go#L119:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/cancel/cancel_test.go#L59:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/cancel/cancel_test.go#L78:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/cancel/cancel_test.go#L242:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/cancel/cancel_test.go#L247:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/delete/delete_test.go#L189:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/delete/delete_test.go#L194:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/delete/delete_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/delete/delete_test.go#L80:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/download/http_test.go#L38:2: len: use require.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/list/list_test.go#L110:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/list/list_test.go#L672:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/list/list_test.go#L675:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L138:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L156:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L426:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L430:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L445:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/rerun/rerun_test.go#L448:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/shared/shared_test.go#L58:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/shared/shared_test.go#L105:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/shared/artifacts_test.go#L64:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/shared/shared_test.go#L57:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/view/view_test.go#L1391:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/view/view_test.go#L1400:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/view/view_test.go#L150:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/view/view_test.go#L168:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/watch/watch_test.go#L73:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/watch/watch_test.go#L91:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/watch/watch_test.go#L398:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/run/watch/watch_test.go#L400:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/code/code_test.go#L107:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/code/code_test.go#L124:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/commits/commits_test.go#L123:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/commits/commits_test.go#L140:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/issues/issues_test.go#L172:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/issues/issues_test.go#L189:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/prs/prs_test.go#L181:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/prs/prs_test.go#L198:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/repos/repos_test.go#L127:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/search/repos/repos_test.go#L144:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L96:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L113:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L205:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L264:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L174:3: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/delete/delete_test.go#L293:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L655:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L83:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L96:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L437:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L654:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/list/list_test.go#L624:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L290:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L291:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L331:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L332:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L431:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L432:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L439:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L440:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L511:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L512:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L609:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L608:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L281:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L286:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L289:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L420:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L425:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L430:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L438:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L581:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L587:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L322:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L327:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L330:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L502:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L507:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L510:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L193:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L210:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/set/set_test.go#L544:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/shared/shared_test.go#L64:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/shared/shared_test.go#L135:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/secret/shared/shared_test.go#L137:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/add/add_test.go#L145:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/delete/delete_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/delete/delete_test.go#L98:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/delete/delete_test.go#L102:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/delete/delete_test.go#L203:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/ssh-key/delete/delete_test.go#L207:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/status/status_test.go#L457:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/status/status_test.go#L69:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/status/status_test.go#L79:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/delete/delete_test.go#L62:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/delete/delete_test.go#L79:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/get/get_test.go#L94:5: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/get/get_test.go#L80:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/list/list_test.go#L441:2: len: use assert.Len
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/list/list_test.go#L61:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/list/list_test.go#L74:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/list/list_test.go#L295:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/list/list_test.go#L440:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L237:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L311:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L413:4: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L433:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L466:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L472:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L302:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L306:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L310:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L146:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L163:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L551:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L553:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L228:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L232:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L236:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L406:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L409:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/set/set_test.go#L412:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/variable/shared/shared_test.go#L44:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/disable/disable_test.go#L284:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/disable/disable_test.go#L288:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/disable/disable_test.go#L66:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/disable/disable_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/enable/enable_test.go#L324:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/enable/enable_test.go#L328:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/enable/enable_test.go#L66:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/enable/enable_test.go#L84:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/list/list_test.go#L63:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/list/list_test.go#L82:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/list/list_test.go#L220:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/list/list_test.go#L222:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/run/run_test.go#L807:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/run/run_test.go#L811:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/run/run_test.go#L117:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/run/run_test.go#L138:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/run/run_test.go#L310:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/view/view_test.go#L136:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/view/view_test.go#L154:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/view/view_test.go#L423:5: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/cmd/workflow/view/view_test.go#L427:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L116:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L117:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L121:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L125:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L130:3: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L138:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L142:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L146:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L150:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L154:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L158:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L173:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L179:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L184:2: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/option/option_test.go#L189:3: expected-actual: need to reverse actual and expected values
https://github.com/cli/cli/blob/trunk/pkg/search/searcher_test.go#L485:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/search/searcher_test.go#L314:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/search/searcher_test.go#L157:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/search/searcher_test.go#L642:4: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/surveyext/editor_test.go#L114:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/surveyext/editor_test.go#L145:2: require-error: for error assertions use require
https://github.com/cli/cli/blob/trunk/pkg/surveyext/editor_test.go#L83:2: require-error: for error assertions use require

Report issue: https://github.com/cli/cli/issues

Copy link

Run testifylint on Repo: https://github.com/ethereum/go-ethereum got output

https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/event_test.go#L338:5: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/unpack_test.go#L397:5: error-nil: use require.NoError
https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/bind/base_test.go#L341:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/bind/base_test.go#L352:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/bind/base_test.go#L363:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/accounts/abi/bind/base_test.go#L372:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/cmd/devp2p/internal/ethtest/chain_test.go#L197:4: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/crypto/bn256/cloudflare/example_test.go#L50:2: len: use require.Len
https://github.com/ethereum/go-ethereum/blob/master/node/rpcstack_test.go#L61:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/node/rpcstack_test.go#L64:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L125:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L215:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L219:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L201:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L172:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/rpcstack_test.go#L247:3: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/node/api_test.go#L233:5: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/p2p/enr/enr_test.go#L161:2: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/p2p/enr/enr_test.go#L105:2: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/p2p/enr/enr_test.go#L142:4: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/p2p/rlpx/buffer_test.go#L49:2: require-error: for error assertions use require
https://github.com/ethereum/go-ethereum/blob/master/params/config_test.go#L143:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/params/config_test.go#L146:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/params/config_test.go#L149:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/params/config_test.go#L152:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/params/config_test.go#L155:2: expected-actual: need to reverse actual and expected values
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L394:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L395:2: error-nil: use assert.Error
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L396:2: error-nil: use assert.Error
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L397:2: error-nil: use assert.NoError
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L398:2: error-nil: use assert.Error
https://github.com/ethereum/go-ethereum/blob/master/trie/stacktrie_test.go#L399:2: error-nil: use assert.Error

Report issue: https://github.com/ethereum/go-ethereum/issues

Copy link

Run testifylint on Repo: https://github.com/jesseduffield/lazydocker got output

https://github.com/jesseduffield/lazydocker/blob/master/pkg/commands/container_stats_test.go#L16:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/jesseduffield/lazydocker/blob/master/pkg/commands/os_test.go#L23:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazydocker/blob/master/pkg/commands/os_test.go#L290:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazydocker/blob/master/pkg/commands/os_test.go#L293:5: require-error: for error assertions use require
https://github.com/jesseduffield/lazydocker/blob/master/pkg/commands/ssh/ssh_test.go#L95:4: require-error: for error assertions use require
https://github.com/jesseduffield/lazydocker/blob/master/pkg/gui/panels/filtered_list_test.go#L156:3: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/jesseduffield/lazydocker/issues

Copy link

Run testifylint on Repo: https://github.com/prometheus/prometheus got output

https://github.com/prometheus/prometheus/blob/main/tsdb/tsdbutil/dir_locker_testutil.go#L78:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/manager_test.go#L1221:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/manager_test.go#L1230:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/http/http_test.go#L74:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/http/http_test.go#L103:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/http/http_test.go#L132:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/kubernetes/kubernetes_test.go#L342:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L51:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L52:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L59:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L60:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L65:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L80:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/discovery/xds/xds_test.go#L83:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/model/histogram/generic_test.go#L110:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/model/textparse/promparse_test.go#L210:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/model/textparse/protobufparse_test.go#L2225:6: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/notifier/notifier_test.go#L863:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/notifier/notifier_test.go#L866:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/notifier/notifier_test.go#L949:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/notifier/notifier_test.go#L952:3: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/promql/histogram_stats_iterator_test.go#L56:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/promql/histogram_stats_iterator_test.go#L69:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/promql/histogram_stats_iterator_test.go#L70:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/promql/functions_test.go#L68:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/rules/manager_test.go#L523:8: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/rules/manager_test.go#L1941:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/rules/manager_test.go#L1979:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/rules/manager_test.go#L2017:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/rules/manager_test.go#L2056:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1149:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1196:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1550:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1628:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1651:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L1677:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L2250:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L2270:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L3105:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L3410:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L3643:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L3731:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L2347:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L2352:4: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/scrape_test.go#L3438:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/target_test.go#L151:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/target_test.go#L172:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/target_test.go#L192:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/target_test.go#L193:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/scrape/target_test.go#L194:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L99:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L100:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L101:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L102:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L113:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L133:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L149:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L150:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L151:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L152:2: empty: use require.Empty
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L219:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/buffer_test.go#L225:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/memoized_iterator_test.go#L33:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/memoized_iterator_test.go#L45:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/series_test.go#L43:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/series_test.go#L49:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/series_test.go#L55:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/series_test.go#L61:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/series_test.go#L67:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L228:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L234:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L240:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L246:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L252:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L363:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L369:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L375:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L381:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L387:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/codec_test.go#L393:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/queue_manager_test.go#L480:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/storage/remote/queue_manager_test.go#L339:4: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/storage/remote/storage_test.go#L172:4: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/storage/remote/client_test.go#L181:5: go-require: do not use require in http handlers
https://github.com/prometheus/prometheus/blob/main/tsdb/block_test.go#L713:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/block_test.go#L730:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1324:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1343:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1428:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1429:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1430:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1436:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1437:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1438:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L287:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L682:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L733:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L1539:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L2089:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L2629:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3360:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3362:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3367:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3418:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3420:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3519:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3564:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3655:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3698:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3772:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3870:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3961:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5237:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5279:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5281:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5336:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5398:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5403:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5788:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5817:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5912:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L5932:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L6010:3: negative-positive: use require.Positive
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L7064:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L726:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L733:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L741:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L748:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L785:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L787:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L792:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L798:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L800:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L807:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2137:6: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2152:6: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2209:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2227:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2263:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2310:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2686:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2690:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2694:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2698:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2709:2: negative-positive: use require.Positive
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2714:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2718:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2733:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2737:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L2741:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3207:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3213:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3219:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3225:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3232:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3629:3: negative-positive: use require.Positive
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4027:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4100:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4128:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4137:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4138:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4170:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4179:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4669:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L4699:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L5925:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/querier_test.go#L1824:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/querier_test.go#L2138:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1679:8: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1682:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1688:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1690:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1691:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1715:9: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1722:8: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1728:8: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1733:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1739:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1741:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/compact_test.go#L1742:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L1393:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L1398:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L2729:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L2732:4: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3084:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3085:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3086:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3771:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3772:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3869:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3870:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3960:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/db_test.go#L3961:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3277:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3278:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3340:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/head_test.go#L3341:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/querier_test.go#L3017:7: go-require: appendSeries contains assertions that must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L405:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L506:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L572:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L816:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L817:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L880:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L881:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L928:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/agent/db_test.go#L929:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/chunkenc/histogram_meta_test.go#L439:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L122:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L123:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L124:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L125:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L126:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L129:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L160:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L161:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L167:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L168:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L200:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L201:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L207:3: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/chunks/queue_test.go#L297:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/tombstones/tombstones_test.go#L274:4: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/wlog/wlog_test.go#L367:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/tsdb/wlog/reader_test.go#L211:6: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/wlog/reader_test.go#L371:5: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/wlog/watcher_test.go#L759:7: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/tsdb/wlog/watcher_test.go#L770:8: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/util/stats/stats_test.go#L32:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/prometheus/prometheus/blob/main/web/web_test.go#L492:4: go-require: require must only be used in the goroutine running the test function
https://github.com/prometheus/prometheus/blob/main/web/web_test.go#L493:4: go-require: require must only be used in the goroutine running the test function

Report issue: https://github.com/prometheus/prometheus/issues

Copy link

Run testifylint on Repo: https://github.com/docker/compose got output

https://github.com/docker/compose/blob/main/cmd/compose/viz_test.go#L86:21: error-nil: use assert.Errorf
https://github.com/docker/compose/blob/main/cmd/compose/ps_test.go#L77:2: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/cmd/compose/ps_test.go#L80:2: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/cmd/compose/ps_test.go#L83:2: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/compose/viz_test.go#L131:3: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/compose/viz_test.go#L190:3: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L47:3: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L80:3: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L85:5: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L97:5: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L116:3: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L120:3: len: use assert.Len
https://github.com/docker/compose/blob/main/pkg/e2e/up_test.go#L100:3: expected-actual: need to reverse actual and expected values
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L112:3: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/e2e/ps_test.go#L125:3: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/watch/notify_test.go#L42:2: error-nil: use assert.NoError
https://github.com/docker/compose/blob/main/pkg/watch/notify_test.go#L46:2: error-nil: use assert.NoError
https://github.com/docker/compose/blob/main/pkg/watch/notify_test.go#L50:2: error-nil: use assert.NoError
https://github.com/docker/compose/blob/main/pkg/watch/paths_test.go#L30:2: require-error: for error assertions use require
https://github.com/docker/compose/blob/main/pkg/watch/paths_test.go#L34:2: require-error: for error assertions use require

Report issue: https://github.com/docker/compose/issues

Copy link

Run testifylint on Repo: https://github.com/ehang-io/nps got output

-: # ehang.io/nps/cmd/npc
cmd/npc/sdk.go#L46:6: main redeclared in this block
cmd/npc/npc.go#L44:6: other declaration of main
https://github.com/ehang-io/nps/blob/master/cmd/npc/sdk.go#L46:6: main redeclared in this block
https://github.com/ehang-io/nps/blob/master/cmd/npc/npc.go#L44:6: 	other declaration of main
-: # github.com/go-gl/gl/v3.2-core/gl
# [pkg-config --cflags  -- gl gl]
Package gl was not found in the pkg-config search path.
Perhaps you should add the directory containing `gl.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gl', required by 'virtual:world', not found
Package 'gl', required by 'virtual:world', not found
/home/runner/go/pkg/mod/github.com/go-gl/gl@v0.0.0-20190320180904-bf2b1f2f34d7/v3.2-core/gl/conversions.go#L13:8: could not import C (no metadata for C)
-: # github.com/go-gl/glfw/v3.3/glfw
In file included from ./glfw/src/internal.h:188,
from ./glfw/src/context.c:30,
from ../../../../go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20210311203641-62640a716d48/c_glfw.go#L4:
./glfw/src/x11_platform.h:36:10: fatal error: X11/Xcursor/Xcursor.h: No such file or directory
36 | #include <X11/Xcursor/Xcursor.h>
|          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
/home/runner/go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20210311203641-62640a716d48/build.go#L53:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L3:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L877:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L878:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L879:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L880:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L881:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L882:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L883:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L884:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L885:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L886:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L887:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L888:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L889:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L891:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L892:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L895:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L896:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L897:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L898:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L899:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L900:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L901:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L902:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L903:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L904:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L905:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L906:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L909:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L910:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L911:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L912:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L913:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L914:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L915:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L916:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L917:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L918:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L919:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L920:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L921:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L922:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L923:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L924:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L925:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L926:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L927:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L928:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L931:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L932:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L933:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L934:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L935:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L936:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L937:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L938:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L939:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L940:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/fyne.io/fyne/v2@v2.0.2/internal/driver/glfw/window.go#L941:2: duplicate key unknown in map literal
testifylint: 66 errors during loading

Report issue: https://github.com/ehang-io/nps/issues

Copy link

Run testifylint on Repo: https://github.com/beego/beego got output

https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L97:5: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L114:5: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L132:5: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L147:5: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L161:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/bloom_filter_cache_test.go#L169:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L31:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L53:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L83:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L87:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L95:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L101:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L106:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L110:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L116:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L118:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L132:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L137:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L145:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L151:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L156:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L161:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L162:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L178:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L179:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L184:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L188:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L195:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L198:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/cache_test.go#L200:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L16:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L26:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L36:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L47:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L57:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L67:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L82:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L91:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L101:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L111:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L121:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/calc_utils_test.go#L131:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/conv_test.go#L69:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/cache/conv_test.go#L71:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/cache/conv_test.go#L73:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/cache/conv_test.go#L77:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/cache/conv_test.go#L79:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L30:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L32:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L41:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L45:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L47:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L48:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L49:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L52:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L55:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L62:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L65:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L70:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L73:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L75:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L77:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L85:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L89:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L91:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L94:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L101:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/file_test.go#L103:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L30:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L53:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L57:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L59:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L71:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L77:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L82:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L86:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/random_expired_cache_test.go#L92:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L31:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L39:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L42:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L68:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L93:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L95:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/read_through_test.go#L115:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/singleflight_test.go#L29:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/singleflight_test.go#L38:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/singleflight_test.go#L41:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/singleflight_test.go#L57:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/write_through_test.go#L76:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L41:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L45:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L54:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L58:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L61:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L65:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L68:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L72:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L74:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L79:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L89:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L95:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L105:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L110:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L113:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L119:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L147:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L173:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L175:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/memcache/memcache_test.go#L196:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L39:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L42:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L52:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L58:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L68:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L73:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L84:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L90:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L104:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L118:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L121:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L126:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L128:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L131:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L135:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L136:2: empty: use assert.Empty
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L141:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L169:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L195:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L197:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/redis/redis_test.go#L218:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L26:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L34:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L40:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L46:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L48:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L52:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L55:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L58:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L65:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L66:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L76:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L81:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L88:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L93:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L97:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L106:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L133:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L158:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L160:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/cache/ssdb/ssdb_test.go#L180:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/httplib/http_response_test.go#L34:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L36:2: bool-compare: use assert.True
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L95:2: suite-dont-use-pkg: use c.Require().NoError
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L130:3: suite-dont-use-pkg: use c.Require().NoError
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L174:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L190:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L198:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L208:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L44:2: suite-dont-use-pkg: use h.Require().NoError
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L110:3: suite-dont-use-pkg: use h.Require().NoError
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L111:3: suite-dont-use-pkg: use h.Equal
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L131:2: suite-dont-use-pkg: use h.Require().NoError
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L339:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L496:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L497:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L130:3: go-require: do not use require in http handlers
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L110:3: go-require: do not use require in http handlers
https://github.com/beego/beego/blob/master/client/httplib/httpclient_test.go#L34:2: require-error: for error assertions use require
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L395:4: require-error: for error assertions use require
https://github.com/beego/beego/blob/master/client/httplib/httplib_test.go#L392:3: suite-subtest-run: use h.Run to run subtest
https://github.com/beego/beego/blob/master/client/httplib/filter/log/filter_test.go#L40:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/httplib/filter/opentelemetry/filter_test.go#L45:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/httplib/filter/opentracing/filter_test.go#L43:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/httplib/filter/prometheus/filter_test.go#L40:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L30:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L34:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L35:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L36:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L37:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L43:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L47:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L53:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L57:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L67:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L73:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_alias_test.go#L77:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/db_test.go#L899:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_test.go#L1204:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/db_test.go#L1342:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L26:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L29:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L32:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L40:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L41:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L44:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L48:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L52:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L56:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L67:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L71:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L75:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L79:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L83:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L87:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L91:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L96:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L97:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L98:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L99:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L102:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L107:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L112:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L116:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L120:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L124:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L130:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/do_nothing_orm_test.go#L131:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L36:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L44:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L55:5: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L59:5: empty: use assert.Empty
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L64:5: empty: use assert.Empty
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L86:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L94:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L103:4: empty: use assert.Empty
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L119:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L125:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L135:5: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L146:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L151:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L156:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L161:5: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L174:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L182:4: empty: use assert.Empty
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L198:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L206:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L217:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L226:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L237:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L244:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L254:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L261:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L271:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L287:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L303:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L319:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L326:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L336:4: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L343:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_orm_decorator_test.go#L415:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/client/orm/filter_test.go#L30:2: len: use assert.Len
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L318:4: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L560:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L561:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L562:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L638:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L639:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L1914:4: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2008:4: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2031:4: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2126:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2128:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2139:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2142:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2145:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2146:4: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2149:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2152:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2156:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2159:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2163:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2166:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2169:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2170:4: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2174:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2177:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2180:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2183:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2186:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2189:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2193:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2194:5: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2313:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2315:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2319:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2323:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2324:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2327:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2330:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2340:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2343:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2344:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2346:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2348:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2354:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2357:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2358:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2361:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2364:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2367:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2466:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2469:2: negative-positive: use assert.Positive
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2490:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2491:2: compares: use assert.LessOrEqual
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2987:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/orm_test.go#L2990:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/ddl_test.go#L83:4: require-error: for error assertions use require
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L48:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L55:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L62:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L76:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L83:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L90:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L95:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L96:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L101:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L102:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L107:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L108:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L113:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L119:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L120:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L125:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/hints/db_hints_test.go#L126:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/client/orm/mock/mock_orm_test.go#L54:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_orm_test.go#L64:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_queryM2Mer_test.go#L31:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_queryM2Mer_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_queryM2Mer_test.go#L39:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_queryM2Mer_test.go#L43:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L32:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L39:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L43:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L47:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L51:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L55:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L59:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L63:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L67:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_querySetter_test.go#L70:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L27:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L31:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L39:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L43:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L47:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L51:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L54:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/client/orm/mock/mock_rawSetter_test.go#L58:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/bean/tag_auto_wire_bean_factory_test.go#L29:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/bean/tag_auto_wire_bean_factory_test.go#L44:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/bean/tag_auto_wire_bean_factory_test.go#L45:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/bean/time_type_adapter_test.go#L27:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/berror/error_test.go#L30:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/core/berror/error_test.go#L36:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/core/berror/error_test.go#L37:2: error-is-as: use assert.ErrorIs
https://github.com/beego/beego/blob/master/core/config/base_config_test.go#L33:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/base_config_test.go#L34:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/global_test.go#L64:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L67:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L74:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L80:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L86:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L87:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/global_test.go#L89:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/global_test.go#L92:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/global_test.go#L102:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L30:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L39:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L44:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L47:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L65:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L74:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L75:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L78:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L82:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L86:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/etcd/config_test.go#L91:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/json/json_test.go#L228:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/json/json_test.go#L232:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/json/json_test.go#L239:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L31:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L40:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L51:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L55:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L59:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L70:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L90:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L94:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L97:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L100:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L110:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L130:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L150:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L169:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L173:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L183:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L187:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L188:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L204:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L208:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L233:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L237:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L239:2: len: use assert.Len
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L251:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L255:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L265:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L276:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L280:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L297:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L301:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L303:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L322:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L326:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L330:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L333:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L338:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L343:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L367:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L371:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/toml/toml_test.go#L374:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/xml/xml_test.go#L130:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/xml/xml_test.go#L133:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/xml/xml_test.go#L137:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/xml/xml_test.go#L143:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/xml/xml_test.go#L149:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L145:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L149:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L155:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L162:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L171:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/config/yaml/yaml_test.go#L172:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/beego/beego/blob/master/core/logs/console_test.go#L83:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/logs/formatter_test.go#L69:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/logs/formatter_test.go#L70:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/core/logs/log_test.go#L114:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/admin_test.go#L225:2: len: use assert.Len
https://github.com/beego/beego/blob/master/server/web/filter_chain_test.go#L81:2: compares: use assert.Greater
https://github.com/beego/beego/blob/master/server/web/template_test.go#L64:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/template_test.go#L229:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/template_test.go#L242:3: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/template_test.go#L248:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/template_test.go#L251:5: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/template_test.go#L254:4: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/controller_test.go#L376:2: require-error: for error assertions use require
https://github.com/beego/beego/blob/master/server/web/controller_test.go#L393:2: require-error: for error assertions use require
https://github.com/beego/beego/blob/master/server/web/filter/ratelimit/token_bucket_test.go#L12:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/server/web/filter/ratelimit/token_bucket_test.go#L17:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/server/web/filter/ratelimit/token_bucket_test.go#L18:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/server/web/filter/ratelimit/token_bucket_test.go#L27:2: expected-actual: need to reverse actual and expected values
https://github.com/beego/beego/blob/master/server/web/mock/context_test.go#L35:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/server/web/mock/session_test.go#L32:2: error-nil: use assert.NoError
https://github.com/beego/beego/blob/master/task/governor_command_test.go#L70:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/task/governor_command_test.go#L75:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/task/governor_command_test.go#L80:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/task/governor_command_test.go#L90:2: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/task/governor_command_test.go#L114:2: len: use assert.Len
https://github.com/beego/beego/blob/master/task/task_test.go#L44:2: len: use assert.Len
https://github.com/beego/beego/blob/master/task/task_test.go#L155:3: error-nil: use assert.Error
https://github.com/beego/beego/blob/master/task/task_test.go#L159:2: len: use assert.Len
https://github.com/beego/beego/blob/master/task/task_test.go#L175:2: len: use assert.Len
https://github.com/beego/beego/blob/master/task/task_test.go#L178:2: empty: use assert.Empty

Report issue: https://github.com/beego/beego/issues

Copy link

Run testifylint on Repo: https://github.com/photoprism/photoprism got output

-: # github.com/davidbyttow/govips/v2/vips
# [pkg-config --cflags  -- vips]
Package vips was not found in the pkg-config search path.
Perhaps you should add the directory containing `vips.pc'
to the PKG_CONFIG_PATH environment variable
No package 'vips' found
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/arithmetic.go#L4:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L52:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L53:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L54:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L55:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L56:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L57:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L58:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L59:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L60:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L61:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L62:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L63:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L69:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L70:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L71:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L72:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L73:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L74:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L75:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L76:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L77:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L78:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L79:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/github.com/davidbyttow/govips/v2@v2.14.0/vips/foreign.go#L80:2: duplicate key unknown in map literal
testifylint: 26 errors during loading

Report issue: https://github.com/photoprism/photoprism/issues

Copy link

Run testifylint on Repo: https://github.com/v2fly/v2ray-core got output

https://github.com/v2fly/v2ray-core/blob/master/app/dns/fakedns/fakedns_test.go#L162:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/app/dns/fakedns/fakedns_test.go#L172:4: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/app/dns/fakedns/fakedns_test.go#L182:4: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/common/net/packetaddr/packetaddr_test.go#L19:2: require-error: for error assertions use require
https://github.com/v2fly/v2ray-core/blob/master/common/net/packetaddr/packetaddr_test.go#L22:2: require-error: for error assertions use require
https://github.com/v2fly/v2ray-core/blob/master/common/net/packetaddr/packetaddr_test.go#L35:2: require-error: for error assertions use require
https://github.com/v2fly/v2ray-core/blob/master/common/net/packetaddr/packetaddr_test.go#L38:2: require-error: for error assertions use require
https://github.com/v2fly/v2ray-core/blob/master/common/protoext/testing/extension_test.go#L15:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/common/protoext/testing/extension_test.go#L26:3: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L35:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L53:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L78:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L91:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L109:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L124:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L47:2: error-nil: use assert.NoError
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L68:3: bool-compare: use assert.True
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L69:3: error-nil: use assert.Error
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L96:4: bool-compare: use assert.True
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/encrypt_test.go#L97:4: error-nil: use assert.Error
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/aead/authid_test.go#L59:2: require-error: for error assertions use require
https://github.com/v2fly/v2ray-core/blob/master/proxy/vmess/encoding/commands_test.go#L56:2: require-error: for error assertions use require

Report issue: https://github.com/v2fly/v2ray-core/issues

Copy link

Run testifylint on Repo: https://github.com/gofiber/fiber got output

https://github.com/gofiber/fiber/blob/main/helpers_test.go#L524:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L145:4: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L147:5: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L166:4: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L227:5: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L229:6: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/path_test.go#L260:5: formatter: remove unnecessary fmt.Sprintf
https://github.com/gofiber/fiber/blob/main/client/request_test.go#L1606:3: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/client/request_test.go#L1607:3: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L84:2: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L116:2: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L128:2: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L155:2: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L182:2: empty: use require.Empty
https://github.com/gofiber/fiber/blob/main/internal/storage/memory/memory_test.go#L186:2: empty: use require.Empty

Report issue: https://github.com/gofiber/fiber/issues

Copy link

Run testifylint on Repo: https://github.com/harness/gitness got output

web/dist.go#L30:12: pattern dist/*: no matching files found
testifylint: error during loading

Report issue: https://github.com/harness/gitness/issues

Copy link

Run testifylint on Repo: https://github.com/labstack/echo got output

https://github.com/labstack/echo/blob/master/bind_test.go#L560:2: bool-compare: use assert.False
https://github.com/labstack/echo/blob/master/bind_test.go#L561:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/bind_test.go#L562:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/bind_test.go#L686:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/bind_test.go#L687:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/bind_test.go#L688:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/bind_test.go#L705:5: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/bind_test.go#L724:3: len: use assert.Len
https://github.com/labstack/echo/blob/master/binder_test.go#L197:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/binder_test.go#L1490:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/binder_test.go#L1675:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/context_test.go#L521:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/context_test.go#L522:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/context_test.go#L523:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/context_test.go#L524:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/context_test.go#L525:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/context_test.go#L793:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/echo_test.go#L248:4: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/echo_test.go#L1270:3: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/echo_test.go#L1445:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/echo_test.go#L1468:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/echo_test.go#L1587:2: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/group_test.go#L39:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/json_test.go#L77:3: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/bind_test.go#L1369:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1179:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L46:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L851:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1644:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1271:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L671:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2069:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1442:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1212:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1167:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1169:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L180:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L527:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1294:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1389:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1379:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1956:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/json_test.go#L86:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2272:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2350:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1436:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1442:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L781:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L783:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1457:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1465:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2609:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2704:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2708:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L461:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1316:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L485:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L915:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L917:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1809:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1811:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1304:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L670:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_test.go#L244:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1871:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L159:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1553:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L539:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1504:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1506:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_test.go#L319:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1730:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L195:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_fs_test.go#L67:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_fs_test.go#L69:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_fs_test.go#L123:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_fs_test.go#L125:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L548:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2828:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1348:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L521:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1178:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1183:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1188:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1193:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1198:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1203:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1208:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1213:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1218:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_test.go#L261:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1004:6: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1006:6: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1009:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1210:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1212:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L1805:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L449:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1516:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L851:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2136:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/router_test.go#L2195:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1199:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1284:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2457:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2461:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2465:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2469:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2473:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2477:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2481:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2485:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2489:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2493:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2497:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2501:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2505:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2509:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L2513:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L83:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1129:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1131:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1189:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_test.go#L1004:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1409:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L235:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L497:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1399:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L300:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L509:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1096:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1098:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1338:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/context_test.go#L866:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L649:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1166:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1419:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L1359:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/binder_test.go#L1143:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L473:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/bind_test.go#L533:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1035:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1047:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1058:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1062:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/echo_test.go#L1067:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/body_limit_test.go#L83:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L219:3: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L235:3: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/middleware/cors_test.go#L247:6: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/middleware/cors_test.go#L615:5: len: use assert.Len
https://github.com/labstack/echo/blob/master/middleware/cors_test.go#L619:5: len: use assert.Len
https://github.com/labstack/echo/blob/master/middleware/cors_test.go#L622:5: len: use assert.Len
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L106:3: empty: use assert.Empty
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L137:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L170:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L81:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L87:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L88:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L341:6: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L343:6: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L344:6: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L430:5: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L432:5: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/jwt_test.go#L433:5: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/logger_test.go#L145:3: compares: use assert.Equal
https://github.com/labstack/echo/blob/master/middleware/proxy_test.go#L162:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L241:2: bool-compare: use assert.False
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L275:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L307:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L379:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L382:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L385:2: bool-compare: use assert.False
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L388:2: bool-compare: use assert.True
https://github.com/labstack/echo/blob/master/middleware/rate_limiter_test.go#L406:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/labstack/echo/blob/master/middleware/request_id_test.go#L41:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/request_id_test.go#L59:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/request_id_test.go#L89:2: expected-actual: need to reverse actual and expected values
https://github.com/labstack/echo/blob/master/middleware/request_logger_test.go#L359:2: error-nil: use assert.NoError
https://github.com/labstack/echo/blob/master/middleware/util_test.go#L135:3: len: use require.Len
https://github.com/labstack/echo/blob/master/middleware/util_test.go#L142:2: len: use require.Len
https://github.com/labstack/echo/blob/master/middleware/body_limit_test.go#L157:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/body_limit_test.go#L159:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/slash_test.go#L274:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/slash_test.go#L85:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L74:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/body_limit_test.go#L108:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L278:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L316:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L89:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/body_dump_test.go#L68:6: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/cors_test.go#L240:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L141:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L288:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/context_timeout_test.go#L161:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/slash_test.go#L135:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L72:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L80:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/context_timeout_test.go#L210:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/middleware_test.go#L89:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/middleware_test.go#L91:5: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/basic_auth_test.go#L35:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/basic_auth_test.go#L47:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/basic_auth_test.go#L52:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/key_auth_test.go#L44:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L357:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L168:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/recover_test.go#L30:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L227:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L139:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L297:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L90:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L91:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/context_timeout_test.go#L98:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L261:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/slash_test.go#L221:4: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L326:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/decompress_test.go#L46:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/logger_test.go#L294:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L228:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/csrf_test.go#L235:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/request_logger_test.go#L280:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L113:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/context_timeout_test.go#L75:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/context_timeout_test.go#L76:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L178:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L181:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/compress_test.go#L189:3: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/timeout_test.go#L261:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/logger_test.go#L317:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/request_logger_test.go#L345:2: require-error: for error assertions use require
https://github.com/labstack/echo/blob/master/middleware/extractor_test.go#L121:4: require-error: for error assertions use require

Report issue: https://github.com/labstack/echo/issues

Copy link

Run testifylint on Repo: https://github.com/helm/helm got output

https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L70:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L77:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L78:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L80:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L81:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L83:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L91:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L111:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L112:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L119:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L120:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L122:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L123:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L136:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L160:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L161:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L167:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L168:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L169:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L170:2: empty: use is.NotEmpty
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L172:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L174:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L192:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L210:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L232:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L255:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L273:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L287:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L385:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L418:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L441:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L461:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L63:2: empty: use assert.Empty
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L154:2: empty: use is.Empty
https://github.com/helm/helm/blob/main/pkg/action/uninstall_test.go#L107:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L62:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L91:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L139:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L170:3: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L300:3: empty: use is.Empty
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L409:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L443:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L505:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L561:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L577:2: expected-actual: need to reverse actual and expected values
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L62:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L122:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/uninstall_test.go#L105:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L360:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L96:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L138:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L480:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L486:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L501:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L75:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/uninstall_test.go#L72:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L377:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L384:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L237:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L343:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L348:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L352:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/dependency_test.go#L127:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L164:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L153:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L159:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L168:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L441:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L523:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L104:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L108:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L112:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L116:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L121:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L393:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L399:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L416:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L459:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L200:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L73:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L523:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L530:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L86:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L168:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L171:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L174:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L181:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L187:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L188:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L208:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L439:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L109:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L222:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L227:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L231:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L618:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L621:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L624:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L627:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/uninstall_test.go#L138:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L278:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L289:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L293:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L227:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L654:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L657:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L660:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L663:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L252:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L475:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L484:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L488:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/upgrade_test.go#L499:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L115:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L272:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/install_test.go#L286:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L248:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/list_test.go#L285:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L54:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L61:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L68:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L76:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L80:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/action/validate_test.go#L84:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/chart/chart_test.go#L53:2: len: use is.Len
https://github.com/helm/helm/blob/main/pkg/chart/chart_test.go#L97:2: error-nil: use is.NoError
https://github.com/helm/helm/blob/main/pkg/chart/chart_test.go#L117:2: bool-compare: use is.False
https://github.com/helm/helm/blob/main/pkg/chart/chart_test.go#L118:2: bool-compare: use is.True
https://github.com/helm/helm/blob/main/pkg/engine/funcs_test.go#L107:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/engine/funcs_test.go#L159:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L152:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L44:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L56:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L70:3: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L120:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/postrender/exec_test.go#L136:2: require-error: for error assertions use require
https://github.com/helm/helm/blob/main/pkg/registry/client_http_test.go#L62:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/client_insecure_tls_test.go#L47:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/client_insecure_tls_test.go#L52:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/client_insecure_tls_test.go#L69:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/client_insecure_tls_test.go#L72:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/client_tls_test.go#L47:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/client_tls_test.go#L52:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/client_tls_test.go#L69:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/client_tls_test.go#L72:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L106:3: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L113:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L117:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L120:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L125:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L165:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L225:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L229:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L231:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L236:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L240:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L245:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L249:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L253:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L255:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L258:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L261:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L265:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L267:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L271:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L276:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L279:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L309:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L313:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L315:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L320:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L324:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L330:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L335:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L337:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L342:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L348:2: error-nil: use suite.Error
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L352:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L387:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L389:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L394:2: error-nil: use suite.NoError
https://github.com/helm/helm/blob/main/pkg/registry/utils_test.go#L395:2: len: use suite.Len

Report issue: https://github.com/helm/helm/issues

Copy link

Run testifylint on Repo: https://github.com/schollz/croc got output

https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L37:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L39:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L42:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L45:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L53:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L56:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L57:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L58:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L60:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L63:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/comm/comm_test.go#L65:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/compress/compress_test.go#L76:2: compares: use assert.Less
https://github.com/schollz/croc/blob/main/src/compress/compress_test.go#L82:2: compares: use assert.Less
https://github.com/schollz/croc/blob/main/src/compress/compress_test.go#L87:2: compares: use assert.Less
https://github.com/schollz/croc/blob/main/src/croc/croc_test.go#L368:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L46:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L49:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L51:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L57:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L63:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L68:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L72:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L78:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L81:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L83:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L89:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L95:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L100:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/crypt/crypt_test.go#L104:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L22:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L25:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L29:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L33:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L35:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L42:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L46:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L73:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L75:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L78:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L81:5: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L89:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L93:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/message/message_test.go#L95:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L30:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L32:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L36:2: expected-actual: need to reverse actual and expected values
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L37:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L39:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L41:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L43:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L46:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L55:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L58:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/tcp/tcp_test.go#L66:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L90:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L93:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L100:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L103:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L110:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L118:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L121:2: error-nil: use assert.Error
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L143:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L206:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L214:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L255:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L257:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L259:2: error-nil: use assert.NoError
https://github.com/schollz/croc/blob/main/src/utils/utils_test.go#L262:2: error-nil: use assert.Error

Report issue: https://github.com/schollz/croc/issues

Copy link

Run testifylint on Repo: https://github.com/kubernetes/minikube got output

-: # libvirt.org/go/libvirt
# [pkg-config --cflags  -- libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt-lxc libvirt-qemu libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt]
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt-lxc was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt-lxc.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt-lxc' found
Package libvirt-qemu was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt-qemu.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt-qemu' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
/home/runner/go/pkg/mod/libvirt.org/go/libvirt@v1.10003.0/callbacks.go#L63:8: could not import C (no metadata for C)
https://github.com/kubernetes/minikube/blob/master/pkg/drivers/kvm/kvm.go#L549:27: cannot use libvirt.DOMAIN_UNDEFINE_KEEP_NVRAM (constant unknown with invalid type) as libvirt.DomainUndefineFlagsValues value in argument to dom.UndefineFlags
https://github.com/kubernetes/minikube/blob/master/pkg/drivers/kvm/kvm.go#L549:27: cannot use libvirt.DOMAIN_UNDEFINE_KEEP_NVRAM (constant unknown with invalid type) as libvirt.DomainUndefineFlagsValues value in argument to dom.UndefineFlags
testifylint: 4 errors during loading

Report issue: https://github.com/kubernetes/minikube/issues

Copy link

Run testifylint on Repo: https://github.com/openfaas/faas got output

testifylint: ./... matched no packages

Report issue: https://github.com/openfaas/faas/issues

Copy link

Run testifylint on Repo: https://github.com/sirupsen/logrus got output

https://github.com/sirupsen/logrus/blob/master/internal/testutils/testutils.go#L26:2: error-nil: use require.NoError
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L244:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L245:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L250:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L251:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L256:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/entry_test.go#L257:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logger_test.go#L95:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/text_formatter_test.go#L563:5: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L44:3: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L48:3: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L79:3: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L93:3: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L94:3: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L160:3: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/hook_test.go#L171:3: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L33:3: nil-compare: use assert.Nil
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L85:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L207:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L216:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L219:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L253:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L288:3: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L299:3: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L345:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L346:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L347:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L355:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L378:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L404:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L479:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L483:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L487:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L491:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L495:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L499:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L503:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L507:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L511:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L515:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L519:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L523:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L527:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L531:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L535:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L539:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L648:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L649:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L653:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L699:2: error-nil: use assert.NoError
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L700:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L701:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L707:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L708:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L709:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L710:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L711:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L712:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L713:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L716:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L717:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L718:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L719:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L720:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L721:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L722:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L725:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L726:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L727:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L728:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L729:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L730:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L731:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L734:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L735:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L736:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L737:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L738:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L739:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L740:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L743:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L744:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L745:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L746:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L747:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L748:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L749:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L752:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L753:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L754:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L755:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L756:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L757:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L758:2: bool-compare: use assert.False
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L761:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L762:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L763:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L764:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L765:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L766:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L767:2: bool-compare: use assert.True
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L317:2: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L325:2: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/writer_test.go#L56:3: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L344:2: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L354:2: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/logrus_test.go#L403:2: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/writer_test.go#L87:3: require-error: for error assertions use require
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L18:2: empty: use assert.Empty
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L23:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L28:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L32:2: empty: use assert.Empty
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L39:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L72:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/hooks/test/test_test.go#L84:2: len: use assert.Len
https://github.com/sirupsen/logrus/blob/master/hooks/writer/writer_test.go#L36:2: expected-actual: need to reverse actual and expected values
https://github.com/sirupsen/logrus/blob/master/hooks/writer/writer_test.go#L37:2: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/sirupsen/logrus/issues

Copy link

Run testifylint on Repo: https://github.com/zyedidia/micro got output

https://github.com/zyedidia/micro/blob/master/internal/buffer/buffer_test.go#L35:2: bool-compare: use assert.False
https://github.com/zyedidia/micro/blob/master/internal/buffer/buffer_test.go#L36:2: bool-compare: use assert.False
https://github.com/zyedidia/micro/blob/master/internal/buffer/line_array_test.go#L25:2: len: use assert.Len
https://github.com/zyedidia/micro/blob/master/internal/buffer/line_array_test.go#L35:2: len: use assert.Len
https://github.com/zyedidia/micro/blob/master/internal/buffer/stack_test.go#L24:2: expected-actual: need to reverse actual and expected values
https://github.com/zyedidia/micro/blob/master/internal/buffer/stack_test.go#L26:2: expected-actual: need to reverse actual and expected values
https://github.com/zyedidia/micro/blob/master/internal/buffer/stack_test.go#L28:2: expected-actual: need to reverse actual and expected values
https://github.com/zyedidia/micro/blob/master/internal/buffer/stack_test.go#L30:2: expected-actual: need to reverse actual and expected values
https://github.com/zyedidia/micro/blob/master/internal/config/colorscheme_test.go#L69:2: error-nil: use assert.NoError
https://github.com/zyedidia/micro/blob/master/internal/config/rtfiles_test.go#L21:2: error-nil: use assert.NoError
https://github.com/zyedidia/micro/blob/master/internal/config/rtfiles_test.go#L28:2: error-nil: use assert.NoError
https://github.com/zyedidia/micro/blob/master/internal/config/rtfiles_test.go#L37:2: error-nil: use assert.NoError
https://github.com/zyedidia/micro/blob/master/runtime/runtime_test.go#L15:2: compares: use assert.Greater
https://github.com/zyedidia/micro/blob/master/runtime/runtime_test.go#L13:2: require-error: for error assertions use require

Report issue: https://github.com/zyedidia/micro/issues

Copy link

Run testifylint on Repo: https://github.com/fyne-io/fyne got output

-: # github.com/go-gl/gl/v2.1/gl
# [pkg-config --cflags  -- gl gl]
Package gl was not found in the pkg-config search path.
Perhaps you should add the directory containing `gl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gl' found
Package gl was not found in the pkg-config search path.
Perhaps you should add the directory containing `gl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gl' found
/home/runner/go/pkg/mod/github.com/go-gl/gl@v0.0.0-20211210172815-726fda9656d6/v2.1/gl/conversions.go#L13:8: could not import C (no metadata for C)
-: # github.com/go-gl/glfw/v3.3/glfw
In file included from ./glfw/src/internal.h:188,
from ./glfw/src/context.c:30,
from ../../../../go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20240306074159-ea2d69986ecb/c_glfw.go#L4:
./glfw/src/x11_platform.h:36:10: fatal error: X11/Xcursor/Xcursor.h: No such file or directory
36 | #include <X11/Xcursor/Xcursor.h>
|          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
/home/runner/go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20240306074159-ea2d69986ecb/build.go#L53:8: could not import C (no metadata for C)
-: # fyne.io/fyne/v2/internal/driver/mobile/gl
In file included from internal/driver/mobile/gl/work.go#L28:
./work.h:12:10: fatal error: GLES3/gl3.h: No such file or directory
12 | #include <GLES3/gl3.h> // install on Ubuntu with: sudo apt-get install libegl1-mesa-dev libgles2-mesa-dev libx11-dev
|          ^~~~~~~~~~~~~
compilation terminated.
https://github.com/fyne-io/fyne/blob/master/internal/driver/mobile/gl/work.go#L44:8: could not import C (no metadata for C)
https://github.com/fyne-io/fyne/blob/master/internal/driver/mobile/app/keyboard.go#L3:8: could not import C (no metadata for C)
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L18:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L19:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L20:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L21:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L22:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L23:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L24:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L25:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L26:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L27:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L28:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L29:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L30:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L32:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L33:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L36:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L37:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L38:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L39:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L40:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L41:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L42:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L43:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L44:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L45:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L46:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L47:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L50:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L51:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L52:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L53:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L54:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L55:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L56:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L57:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L58:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L59:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L60:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L61:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L62:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L63:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L64:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L65:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L66:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L67:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L68:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L69:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L72:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L73:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L74:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L75:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L76:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L77:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L78:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L79:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L80:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L81:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L82:2: duplicate key unknown in map literal
https://github.com/fyne-io/fyne/blob/master/internal/driver/glfw/window_desktop_test.go#L10:2: "fyne.io/fyne/v2/driver/desktop" imported and not used
testifylint: 66 errors during loading

Report issue: https://github.com/fyne-io/fyne/issues

Copy link

Run testifylint on Repo: https://github.com/uber/kraken got output

https://github.com/uber/kraken/blob/master/core/metainfo_test.go#L116:4: compares: use require.Less
https://github.com/uber/kraken/blob/master/lib/backend/manager_test.go#L57:4: compares: use require.Same
https://github.com/uber/kraken/blob/master/lib/backend/gcsbackend/client_test.go#L225:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/backend/hdfsbackend/webhdfs/client_test.go#L67:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/hdfsbackend/webhdfs/client_test.go#L68:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/hdfsbackend/webhdfs/client_test.go#L260:4: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/hdfsbackend/webhdfs/client_test.go#L261:4: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/hdfsbackend/webhdfs/client_test.go#L282:4: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/httpbackend/http_test.go#L50:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/registrybackend/blobclient_test.go#L51:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/registrybackend/blobclient_test.go#L81:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/registrybackend/tagclient_test.go#L50:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/registrybackend/tagclient_test.go#L56:3: go-require: do not use require in http handlers
https://github.com/uber/kraken/blob/master/lib/backend/shadowbackend/client_test.go#L266:5: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/shadowbackend/client_test.go#L401:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/shadowbackend/client_test.go#L292:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/shadowbackend/client_test.go#L177:5: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/shadowbackend/client_test.go#L182:5: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L96:5: error-nil: use assert.NoError
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L218:2: empty: use assert.Empty
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L227:2: empty: use assert.Empty
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L233:2: empty: use assert.Empty
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L239:2: empty: use assert.Empty
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L225:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L231:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L237:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L130:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L216:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L92:5: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L151:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L156:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L160:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/client_test.go#L170:2: require-error: for error assertions use require
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/benchmark/client_test.go#L119:3: compares: use assert.GreaterOrEqual
https://github.com/uber/kraken/blob/master/lib/backend/sqlbackend/benchmark/client_test.go#L135:3: compares: use assert.GreaterOrEqual
https://github.com/uber/kraken/blob/master/lib/dockerregistry/metadata_test.go#L39:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/dockerregistry/transfer/ro_transferer_test.go#L191:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/dockerregistry/transfer/ro_transferer_test.go#L193:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/dockerregistry/transfer/ro_transferer_test.go#L194:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L51:4: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L52:4: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L53:4: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L54:4: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L74:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L78:3: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L79:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L80:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L81:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L92:3: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L93:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L94:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L95:3: bool-compare: use assert.False
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L154:2: len: use assert.Len
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L175:2: len: use assert.Len
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L186:5: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L206:2: len: use assert.Len
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L222:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L238:5: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L262:5: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/rendezvous_test.go#L263:5: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/hrw/testutils_test.go#L30:3: nil-compare: use assert.NotNil
https://github.com/uber/kraken/blob/master/lib/middleware/middleware_test.go#L61:4: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/middleware/middleware_test.go#L93:2: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/middleware/middleware_test.go#L146:4: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/persistedretry/tagreplication/store_test.go#L117:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/persistedretry/tagreplication/store_test.go#L118:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/persistedretry/writeback/store_test.go#L83:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/persistedretry/writeback/store_test.go#L84:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L68:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L69:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L70:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L133:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L134:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L135:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/ca_store_test.go#L136:2: compares: use require.Greater
https://github.com/uber/kraken/blob/master/lib/store/cleanup_test.go#L250:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/cleanup_test.go#L254:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/cleanup_test.go#L258:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/ca_download_store_test.go#L40:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/ca_download_store_test.go#L41:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/ca_download_store_test.go#L42:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/base/file_entry_test.go#L388:2: error-nil: use require.NoError
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L67:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L68:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L112:2: compares: use require.GreaterOrEqual
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L113:2: compares: use require.Equal
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L136:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L179:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L213:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L214:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L215:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L260:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L261:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L262:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L308:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L309:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L310:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L97:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L98:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L335:4: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L336:4: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L375:4: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L376:4: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L395:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L396:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/lib/store/base/file_op_test.go#L465:2: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L151:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L153:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/store/base/file_map_test.go#L206:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L83:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L85:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L86:4: go-require: leecher.checkTorrent contains assertions that must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L125:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L126:5: go-require: p.checkTorrent contains assertions that must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L165:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L166:4: go-require: p.checkTorrent contains assertions that must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/scheduler_test.go#L282:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/announcequeue/queue_test.go#L79:5: compares: use require.NotEqual
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L58:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L61:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L62:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L63:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L64:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L65:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L66:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L69:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L70:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L71:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L72:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L80:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L81:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L82:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L83:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L84:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L85:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L108:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L111:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L121:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/conn/handshaker_test.go#L123:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L154:5: compares: use require.LessOrEqual
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L158:5: compares: use require.LessOrEqual
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L160:5: compares: use require.LessOrEqual
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L151:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L154:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L158:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/scheduler/dispatch/dispatcher_test.go#L160:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L207:5: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L208:5: len: use require.Len
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_archive_test.go#L189:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_archive_test.go#L190:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L141:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L185:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L193:6: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L200:6: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L206:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L207:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L208:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L209:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/agentstorage/torrent_test.go#L277:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/originstorage/torrent_test.go#L80:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/originstorage/torrent_test.go#L83:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/lib/torrent/storage/originstorage/torrent_test.go#L84:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/tracker/peerstore/local_test.go#L140:5: compares: use require.LessOrEqual
https://github.com/uber/kraken/blob/master/tracker/peerstore/redis_test.go#L56:2: expected-actual: need to reverse actual and expected values
https://github.com/uber/kraken/blob/master/tracker/peerstore/local_test.go#L132:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/tracker/peerstore/local_test.go#L139:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/tracker/peerstore/local_test.go#L140:5: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/bandwidth/limiter_test.go#L112:7: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/configutil/config_test.go#L225:3: error-nil: use require.Error
https://github.com/uber/kraken/blob/master/utils/dedup/limiter_test.go#L101:2: compares: use require.Less
https://github.com/uber/kraken/blob/master/utils/dedup/limiter_test.go#L59:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/dedup/limiter_test.go#L91:4: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/diskspaceutil/diskspaceutil_test.go#L15:2: bool-compare: use require.True
https://github.com/uber/kraken/blob/master/utils/diskspaceutil/diskspaceutil_test.go#L16:2: bool-compare: use require.True
https://github.com/uber/kraken/blob/master/utils/lockermap/map_test.go#L48:6: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/lockermap/map_test.go#L101:3: go-require: require must only be used in the goroutine running the test function
https://github.com/uber/kraken/blob/master/utils/lockermap/map_test.go#L152:4: go-require: require must only be used in the goroutine running the test function

Report issue: https://github.com/uber/kraken/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682582195

Copy link

Run testifylint on Repo: https://github.com/kubernetes/kube-state-metrics got output

https://github.com/kubernetes/kube-state-metrics/blob/main/pkg/customresourcestate/config_test.go#L53:4: expected-actual: need to reverse actual and expected values
https://github.com/kubernetes/kube-state-metrics/blob/main/pkg/customresourcestate/config_test.go#L34:2: require-error: for error assertions use require
https://github.com/kubernetes/kube-state-metrics/blob/main/pkg/customresourcestate/config_test.go#L40:3: require-error: for error assertions use require

Report issue: https://github.com/kubernetes/kube-state-metrics/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682583625

Copy link

Run testifylint on Repo: https://github.com/TencentBlueKing/bk-cmdb got output

-: # configcenter/src/apimachinery/fake
src/apimachinery/fake/main.go#L26:3: unknown field ZkAddr in struct literal of type "configcenter/src/apimachinery/util".APIMachineryConfig
src/apimachinery/fake/main.go#L38:49: not enough arguments in call to apimachinery.NewApiMachinery
have (*"configcenter/src/apimachinery/util".APIMachineryConfig)
want (*"configcenter/src/apimachinery/util".APIMachineryConfig, discovery.DiscoveryInterface)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/apimachinery/fake/main.go#L26:3: unknown field ZkAddr in struct literal of type "configcenter/src/apimachinery/util".APIMachineryConfig
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/apimachinery/fake/main.go#L38:51: not enough arguments in call to apimachinery.NewApiMachinery
have (*"configcenter/src/apimachinery/util".APIMachineryConfig)
want (*"configcenter/src/apimachinery/util".APIMachineryConfig, discovery.DiscoveryInterface)
-: # configcenter/src/common/http/httpserver
src/common/http/httpserver/server.go#L143:24: undefined: ssl.ServerTslConf
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/http/httpserver/server.go#L143:24: undefined: ssl.ServerTslConf
src/framework/common/rest/type.go#L19:2: package configcenter/src/framework/clientset/discovery is not in std (/opt/hostedtoolcache/go/1.22.4/x64/src/configcenter/src/framework/clientset/discovery)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L16:2: could not import net/http (no metadata for net/http)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L18:2: could not import configcenter/src/apimachinery/flowctrl (no metadata for configcenter/src/apimachinery/flowctrl)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L19:2: could not import configcenter/src/framework/clientset/discovery (no metadata for configcenter/src/framework/clientset/discovery)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L20:8: could not import configcenter/src/framework/common/http (no metadata for configcenter/src/framework/common/http)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L43:11: undefined: discovery
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/common/rest/type.go#L19:2: "configcenter/src/framework/clientset/discovery" imported as rest and not used
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/model/set.go#L83:76: ctx.ModuleID undefined (type *"configcenter/src/framework/clientset/types".UpdateSetCtx has no field or method ModuleID)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L25:2: rest redeclared in this block
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L21:2: 	other declaration of rest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L67:14: undefined: rest.ClientInterface
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L38:15: undefined: discovery
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L55:16: undefined: rest.NewRESTClient
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/framework/clientset/clientset.go#L25:2: "configcenter/src/framework/common/rest" imported and not used
-: # configcenter/src/apimachinery [configcenter/src/apimachinery.test]
src/apimachinery/clientset_coreservice_model_test.go#L203:45: mockAPI.MockDo(resp).CoreService().Model().DeleteModelClassificationCascade undefined (type "configcenter/src/apimachinery/coreservice/model".ModelClientInterface has no field or method DeleteModelClassificationCascade)
src/apimachinery/clientset_coreservice_model_test.go#L204:44: mockAPI.CoreService().Model().DeleteModelClassificationCascade undefined (type "configcenter/src/apimachinery/coreservice/model".ModelClientInterface has no field or method DeleteModelClassificationCascade)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/apimachinery/clientset_coreservice_model_test.go#L203:45: mockAPI.MockDo(resp).CoreService().Model().DeleteModelClassificationCascade undefined (type model.ModelClientInterface has no field or method DeleteModelClassificationCascade)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/apimachinery/clientset_coreservice_model_test.go#L204:44: mockAPI.CoreService().Model().DeleteModelClassificationCascade undefined (type model.ModelClientInterface has no field or method DeleteModelClassificationCascade)
-: # configcenter/src/common [configcenter/src/common.test]
src/common/tablenames_test.go#L36:31: not enough arguments in call to GetInstTableName
have (string)
want (string, string)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/tablenames_test.go#L36:44: not enough arguments in call to GetInstTableName
have (string)
want (string, string)
-: import cycle not allowed in test
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/result_test.go#L7:2: could not import configcenter/src/common/metadata (import cycle: [configcenter/src/common/metadata [configcenter/src/common/metadata.test]])
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L37:3: unknown field SetID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L43:3: unknown field ModuleID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L50:3: unknown field HostID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L58:3: unknown field HostID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L59:3: unknown field ModuleID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L60:3: unknown field SetID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L67:3: unknown field HostID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L68:3: unknown field ModuleID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L69:3: unknown field SetID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L75:3: unknown field HostID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L76:3: unknown field ModuleID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L77:3: unknown field SetID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L84:3: unknown field HostID in struct literal of type HostModuleRelationRequest
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/metadata/core_service_test.go#L85:3: unknown field SetID in struct literal of type HostModuleRelationRequest
-: # configcenter/src/common/querybuilder_test [configcenter/src/common/querybuilder.test]
src/common/querybuilder/types_test.go#L177:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L222:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L286:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L310:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L349:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L386:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
src/common/querybuilder/types_test.go#L417:17: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L177:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L222:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L286:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L310:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L349:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L386:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/querybuilder/types_test.go#L417:31: not enough arguments in call to rule.Validate
have ()
want (*querybuilder.RuleOption)
-: # configcenter/src/common/util [configcenter/src/common/util.test]
src/common/util/ownerutil_test.go#L107:26: cannot use tt.args.condition (variable of type interface{}) as map[string]interface{} value in argument to SetModOwner: need type assertion
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/util/ownerutil_test.go#L107:26: cannot use tt.args.condition (variable of type interface{}) as map[string]interface{} value in argument to SetModOwner: need type assertion
-: # configcenter/src/common/valid/attribute [configcenter/src/common/valid/attribute.test]
src/common/valid/attribute/attribute_test.go#L111:9: cannot use 1 (untyped int constant) as string value in struct literal
src/common/valid/attribute/attribute_test.go#L112:9: cannot use 100 (untyped int constant) as string value in struct literal
src/common/valid/attribute/attribute_test.go#L134:9: cannot use 101 (untyped int constant) as string value in struct literal
src/common/valid/attribute/attribute_test.go#L135:9: cannot use 100 (untyped int constant) as string value in struct literal
src/common/valid/attribute/attribute_test.go#L150:74: cannot use tt.args.isMultiple (variable of type bool) as *bool value in argument to ValidPropertyOption
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/valid/attribute/attribute_test.go#L111:9: cannot use 1 (untyped int constant) as string value in struct literal
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/valid/attribute/attribute_test.go#L112:9: cannot use 100 (untyped int constant) as string value in struct literal
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/valid/attribute/attribute_test.go#L134:9: cannot use 101 (untyped int constant) as string value in struct literal
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/valid/attribute/attribute_test.go#L135:9: cannot use 100 (untyped int constant) as string value in struct literal
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/common/valid/attribute/attribute_test.go#L150:74: cannot use tt.args.isMultiple (variable of type bool) as *bool value in argument to ValidPropertyOption
-: # configcenter/src/scene_server/host_server/logics [configcenter/src/scene_server/host_server/logics.test]
src/scene_server/host_server/logics/agent_test.go#L43:12: undefined: ParseHostSnap
src/scene_server/host_server/logics/agent_test.go#L77:10: undefined: HostSnap
src/scene_server/host_server/logics/agent_test.go#L88:13: undefined: ParseHostSnap
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/scene_server/host_server/logics/agent_test.go#L43:12: undefined: ParseHostSnap
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/scene_server/host_server/logics/agent_test.go#L77:10: undefined: HostSnap
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/scene_server/host_server/logics/agent_test.go#L88:13: undefined: ParseHostSnap
-: # configcenter/src/source_controller/coreservice/core/association_test [configcenter/src/source_controller/coreservice/core/association.test]
src/source_controller/coreservice/core/association/mock_test.go#L36:52: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L41:51: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L46:62: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L51:49: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L58:48: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L63:51: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L68:61: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L73:59: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L77:52: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L102:30: undefined: core.ContextParams
src/source_controller/coreservice/core/association/mock_test.go#L102:30: too many errors
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L36:52: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L41:51: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L46:62: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L51:49: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L58:48: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L63:51: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L68:61: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L73:59: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L77:52: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L102:30: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L83:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L85:19: cannot use db (variable of type *local.Mongo) as "configcenter/src/source_controller/coreservice/core/model".OperationDependences value in argument to model.New: *local.Mongo does not implement "configcenter/src/source_controller/coreservice/core/model".OperationDependences (missing method CascadeDeleteAssociation)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L85:23: cannot use &mockDependences{} (value of type *mockDependences) as language.CCLanguageIf value in argument to model.New: *mockDependences does not implement language.CCLanguageIf (missing method CreateDefaultCCLanguageIf)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L90:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L92:29: too many arguments in call to association.New
have (*local.Mongo, *mockDependences)
want ("configcenter/src/source_controller/coreservice/core/association".OperationDependencies)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L97:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L99:45: not enough arguments in call to instances.New
have (*local.Mongo, *instDependences)
want (instances.OperationDependences, language.CCLanguageIf, apimachinery.ClientSetInterface)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L103:57: not enough arguments in call to errors.New
have (string)
want (int, string)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L103:12: assignment mismatch: 2 variables but errors.New returns 1 value
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/association/mock_test.go#L105:14: undefined: core.ContextParams
-: # configcenter/src/source_controller/coreservice/core/instances_test [configcenter/src/source_controller/coreservice/core/instances.test]
src/source_controller/coreservice/core/instances/mock_test.go#L35:52: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L40:51: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L45:62: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L50:49: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L56:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
src/source_controller/coreservice/core/instances/mock_test.go#L58:27: not enough arguments in call to instances.New
have (*local.Mongo, *mockDependences)
want (instances.OperationDependences, "configcenter/src/common/language".CCLanguageIf, apimachinery.ClientSetInterface)
src/source_controller/coreservice/core/instances/mock_test.go#L61:30: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L62:12: assignment mismatch: 2 variables but errors.New returns 1 value
src/source_controller/coreservice/core/instances/mock_test.go#L62:23: not enough arguments in call to errors.New
have (string)
want (int, string)
src/source_controller/coreservice/core/instances/mock_test.go#L64:14: undefined: core.ContextParams
src/source_controller/coreservice/core/instances/mock_test.go#L64:14: too many errors
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L35:52: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L40:51: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L45:62: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L50:49: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L61:30: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L56:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L58:45: not enough arguments in call to instances.New
have (*local.Mongo, *mockDependences)
want (instances.OperationDependences, language.CCLanguageIf, apimachinery.ClientSetInterface)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L62:57: not enough arguments in call to errors.New
have (string)
want (int, string)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L62:12: assignment mismatch: 2 variables but errors.New returns 1 value
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L64:14: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/instances/mock_test.go#L25:2: "configcenter/src/storage/dal/mongo" imported and not used
-: # configcenter/src/source_controller/coreservice/core/model_test [configcenter/src/source_controller/coreservice/core/model.test]
src/source_controller/coreservice/core/model/mock_test.go#L33:48: undefined: core.ContextParams
src/source_controller/coreservice/core/model/mock_test.go#L38:51: undefined: core.ContextParams
src/source_controller/coreservice/core/model/mock_test.go#L43:61: undefined: core.ContextParams
src/source_controller/coreservice/core/model/mock_test.go#L48:59: undefined: core.ContextParams
src/source_controller/coreservice/core/model/mock_test.go#L54:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
src/source_controller/coreservice/core/model/mock_test.go#L56:43: too many arguments in call to model.New
have (*local.Mongo, *mockDependences, nil)
want ("configcenter/src/source_controller/coreservice/core/model".OperationDependences, "configcenter/src/common/language".CCLanguageIf)
src/source_controller/coreservice/core/model/mock_test.go#L59:30: undefined: core.ContextParams
src/source_controller/coreservice/core/model/mock_test.go#L62:14: undefined: core.ContextParams
src/source_controller/coreservice/core/model/classification_test.go#L241:29: modelMgr.DeleteModelClassificaiton undefined (type core.ModelOperation has no field or method DeleteModelClassificaiton)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L33:48: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L38:51: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L43:61: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L48:59: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L59:30: undefined: core.ContextParams
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/classification_test.go#L241:29: modelMgr.DeleteModelClassificaiton undefined (type core.ModelOperation has no field or method DeleteModelClassificaiton)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L54:26: cannot use "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,localhost:27013/cmdb" (untyped string constant "mongodb://cc:cc@localhost:27010,localhost:27011,localhost:27012,loca...) as local.MongoConf value in argument to local.NewMgo
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L56:43: too many arguments in call to model.New
have (*local.Mongo, *mockDependences, nil)
want ("configcenter/src/source_controller/coreservice/core/model".OperationDependences, language.CCLanguageIf)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/core/model/mock_test.go#L62:14: undefined: core.ContextParams
-: # configcenter/src/source_controller/coreservice/service_test [configcenter/src/source_controller/coreservice/service.test]
src/source_controller/coreservice/service/service_test.go#L50:42: cannot use coreService.WebService() (value of type *restful.Container) as *restful.WebService value in argument to restful.NewContainer().Add
src/source_controller/coreservice/service/service_test.go#L51:24: undefined: backbone.TLSConfig
src/source_controller/coreservice/service/service_test.go#L56:3: unknown field Server in struct literal of type backbone.Config
src/source_controller/coreservice/service/service_test.go#L63:15: assignment mismatch: 2 variables but errors.New returns 1 value
src/source_controller/coreservice/service/service_test.go#L63:26: not enough arguments in call to errors.New
have (string)
want (int, string)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/service/service_test.go#L50:42: cannot use coreService.WebService() (value of type *restful.Container) as *restful.WebService value in argument to restful.NewContainer().Add
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/service/service_test.go#L51:24: undefined: backbone.TLSConfig
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/service/service_test.go#L56:3: unknown field Server in struct literal of type backbone.Config
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/service/service_test.go#L63:57: not enough arguments in call to errors.New
have (string)
want (int, string)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/source_controller/coreservice/service/service_test.go#L63:15: assignment mismatch: 2 variables but errors.New returns 1 value
-: # configcenter/src/test/load_test [configcenter/src/test/load.test]
src/test/load/db_load_test.go#L116:24: client1.StartSession undefined (type *local.Mongo has no field or method StartSession)
src/test/load/db_load_test.go#L126:14: undefined: util.TnxIntoContext
src/test/load/db_load_test.go#L147:34: not enough arguments in call to client2.CommitTransaction
have (unknown type)
want ("context".Context, *"configcenter/src/common/metadata".TxnCapable)
src/test/load/db_load_test.go#L163:22: client.StartSession undefined (type *local.Mongo has no field or method StartSession)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/load/db_load_test.go#L116:24: client1.StartSession undefined (type *local.Mongo has no field or method StartSession)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/load/db_load_test.go#L126:14: undefined: util.TnxIntoContext
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/load/db_load_test.go#L147:37: not enough arguments in call to client2.CommitTransaction
have (unknown type)
want ("context".Context, *"configcenter/src/common/metadata".TxnCapable)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/load/db_load_test.go#L163:22: client.StartSession undefined (type *local.Mongo has no field or method StartSession)
-: # configcenter/src/test/txn_test [configcenter/src/test/txn.test]
src/test/txn/txn_test.go#L47:19: result.Result undefined (type *"configcenter/src/common/metadata".CreateOneDataResult has no field or method Result)
src/test/txn/txn_test.go#L86:21: attResult.Result undefined (type *"configcenter/src/common/metadata".QueryModelDataResult has no field or method Result)
src/test/txn/txn_test.go#L87:21: attResult.Data undefined (type *"configcenter/src/common/metadata".QueryModelDataResult has no field or method Data)
src/test/txn/txn_test.go#L137:18: result.Result undefined (type *"configcenter/src/common/metadata".CreateManyDataResult has no field or method Result)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/txn/txn_test.go#L47:19: result.Result undefined (type *"configcenter/src/common/metadata".CreateOneDataResult has no field or method Result)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/txn/txn_test.go#L86:21: attResult.Result undefined (type *"configcenter/src/common/metadata".QueryModelDataResult has no field or method Result)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/txn/txn_test.go#L87:21: attResult.Data undefined (type *"configcenter/src/common/metadata".QueryModelDataResult has no field or method Data)
https://github.com/TencentBlueKing/bk-cmdb/blob/master/src/test/txn/txn_test.go#L137:18: result.Result undefined (type *"configcenter/src/common/metadata".CreateManyDataResult has no field or method Result)
testifylint: 119 errors during loading

Report issue: https://github.com/TencentBlueKing/bk-cmdb/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682582849

Copy link

Run testifylint on Repo: https://github.com/deepmap/oapi-codegen got output

https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L126:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L127:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L131:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L132:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L133:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L134:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L135:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L136:2: empty: use assert.Empty
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L311:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L312:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L313:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L314:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L315:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L316:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L317:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L321:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L322:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L323:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L324:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L325:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L326:2: bool-compare: use assert.True
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L327:2: bool-compare: use assert.False
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L92:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L96:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L20:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L13:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L31:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L35:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L82:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L190:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L195:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/extension_test.go#L45:5: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/extension_test.go#L52:4: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L121:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L125:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L105:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L110:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/utils_test.go#L304:4: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L40:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L44:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L49:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/extension_test.go#L99:5: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/extension_test.go#L106:4: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L142:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/codegen_test.go#L147:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L34:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L112:2: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L60:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/filter_test.go#L64:3: require-error: for error assertions use require
https://github.com/deepmap/oapi-codegen/blob/main/pkg/codegen/prune_test.go#L52:2: require-error: for error assertions use require

Report issue: https://github.com/deepmap/oapi-codegen/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682594241

Copy link

Run testifylint on Repo: https://github.com/microsoft/ethr got output

client.go#L36:2: no required module provides package golang.org/x/net/icmp; to add it:
go get golang.org/x/net/icmp
client.go#L37:2: no required module provides package golang.org/x/net/ipv4; to add it:
go get golang.org/x/net/ipv4
client.go#L38:2: no required module provides package golang.org/x/net/ipv6; to add it:
go get golang.org/x/net/ipv6
https://github.com/microsoft/ethr/blob/master/client.go#L36:2: could not import golang.org/x/net/icmp (invalid package name: "")
https://github.com/microsoft/ethr/blob/master/client.go#L37:2: could not import golang.org/x/net/ipv4 (invalid package name: "")
https://github.com/microsoft/ethr/blob/master/client.go#L38:2: could not import golang.org/x/net/ipv6 (invalid package name: "")
testifylint: 6 errors during loading

Report issue: https://github.com/microsoft/ethr/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682599042

Copy link

Run testifylint on Repo: https://github.com/google/seesaw got output

-: # github.com/google/seesaw/netlink
netlink/cfuncs.go#L22:10: fatal error: netlink/netlink.h: No such file or directory
22 | #include <netlink/netlink.h>
|          ^~~~~~~~~~~~~~~~~~~
compilation terminated.
https://github.com/google/seesaw/blob/master/netlink/cfuncs.go#L39:8: could not import C (no metadata for C)
https://github.com/google/seesaw/blob/master/ipvs/ipvs.go#L34:8: could not import C (no metadata for C)
https://github.com/google/seesaw/blob/master/ipvs/ipvs.go#L34:8: could not import C (no metadata for C)
-: # github.com/google/seesaw/netlink
# [github.com/google/seesaw/netlink]
netlink/cfuncs.go#L22:10: fatal error: netlink/netlink.h: No such file or directory
22 | #include <netlink/netlink.h>
|          ^~~~~~~~~~~~~~~~~~~
compilation terminated.
https://github.com/google/seesaw/blob/master/netlink/cfuncs.go#L39:8: could not import C (no metadata for C)
testifylint: 6 errors during loading

Report issue: https://github.com/google/seesaw/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682602291

Copy link

Run testifylint on Repo: https://github.com/vektra/mockery got output

https://github.com/vektra/mockery/blob/master/cmd/showconfig_test.go#L28:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/cmd/showconfig_test.go#L31:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L45:2: len: use assert.Len
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L67:2: len: use assert.Len
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L97:2: empty: use assert.NotEmpty
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L66:2: compares: use assert.Greater
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L91:2: compares: use assert.GreaterOrEqual
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L130:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L17:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L20:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L23:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L55:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L57:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L59:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L61:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L64:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L33:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L35:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L37:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L39:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L42:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L104:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L79:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/walker_test.go#L54:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L77:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L79:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/parse_test.go#L82:2: require-error: for error assertions use require
https://github.com/vektra/mockery/blob/master/pkg/fixtures/test/expecter_test.go#L120:3: expected-actual: need to reverse actual and expected values
https://github.com/vektra/mockery/blob/master/pkg/fixtures/test/expecter_test.go#L178:3: expected-actual: need to reverse actual and expected values
https://github.com/vektra/mockery/blob/master/pkg/fixtures/test/issue_766_test.go#L33:2: require-error: for error assertions use require

Report issue: https://github.com/vektra/mockery/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682600089

Copy link

Run testifylint on Repo: https://github.com/go-pg/pg got output

https://github.com/go-pg/pg/blob/v10/options_test.go#L308:2: require-error: for error assertions use require
https://github.com/go-pg/pg/blob/v10/conv_test.go#L538:3: error-nil: use assert.NoError
https://github.com/go-pg/pg/blob/v10/conv_test.go#L546:2: error-nil: use assert.NoError
https://github.com/go-pg/pg/blob/v10/types/in_op_test.go#L13:2: require-error: for error assertions use require

Report issue: https://github.com/go-pg/pg/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682603351

Copy link

Run testifylint on Repo: https://github.com/fnproject/fn got output

https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1720:2: bool-compare: use assert.False
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1721:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1722:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1765:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1766:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1767:2: bool-compare: use assert.False
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1810:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1811:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/agent_test.go#L1812:2: bool-compare: use assert.True
https://github.com/fnproject/fn/blob/master/api/agent/runner_status_test.go#L44:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/agent/runner_status_test.go#L63:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L90:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L93:2: compares: use assert.LessOrEqual
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L114:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L117:2: compares: use assert.Greater
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L141:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L144:2: compares: use assert.Greater
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L178:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L181:2: compares: use assert.Equal
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L186:2: compares: use assert.Equal
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L187:2: compares: use assert.Equal
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L215:2: error-nil: use assert.NoError
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L218:2: compares: use assert.Greater
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L223:2: compares: use assert.Greater
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L224:2: compares: use assert.Greater
https://github.com/fnproject/fn/blob/master/api/runnerpool/naive_placer_test.go#L228:2: compares: use assert.LessOrEqual

Report issue: https://github.com/fnproject/fn/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682598169

Copy link

Run testifylint on Repo: https://github.com/hashicorp/terraform-provider-azurerm got output

-: write /home/runner/.cache/go-build/05/05f6e2aeb49317976d633ac79a939bcf705870c3059ab7671688168c20c0e159-d: no space left on device
-: # github.com/hashicorp/terraform-provider-azurerm/internal/services/voiceservices_test [github.com/hashicorp/terraform-provider-azurerm/internal/services/voiceservices.test]
compile: writing output: write $WORK/b2729/_pkg_.a: no space left on device
-: # github.com/hashicorp/terraform-provider-azurerm/internal/services/web_test [github.com/hashicorp/terraform-provider-azurerm/internal/services/web.test]
compile: writing output: write $WORK/b2731/_pkg_.a: no space left on device
-: # github.com/hashicorp/terraform-provider-azurerm/internal/services/workloads_test [github.com/hashicorp/terraform-provider-azurerm/internal/services/workloads.test]
compile: writing output: write $WORK/b2737/_pkg_.a: no space left on device
-: write /home/runner/.cache/go-build/3a/3a3d717724ce3b644034593779bce5924726662f0393d54d67940661146bb8a7-d: no space left on device
-: # github.com/hashicorp/terraform-provider-azurerm/internal/tags [github.com/hashicorp/terraform-provider-azurerm/internal/tags.test]
compile: writing output: write $WORK/b2741/_pkg_.a: no space left on device
-: mkdir /tmp/go-build4035683852/b2743/: no space left on device
-: mkdir /tmp/go-build4035683852/b2745/: no space left on device
-: mkdir /tmp/go-build4035683852/b2747/: no space left on device
-: mkdir /tmp/go-build4035683852/b2749/: no space left on device
-: mkdir /tmp/go-build4035683852/b2751/: no space left on device
-: mkdir /tmp/go-build4035683852/b2754/: no space left on device
-: mkdir /tmp/go-build4035683852/b2756/: no space left on device
-: mkdir /tmp/go-build4035683852/b2758/: no space left on device
-: mkdir /tmp/go-build4035683852/b2760/: no space left on device
-: mkdir /tmp/go-build4035683852/b2762/: no space left on device
-: mkdir /tmp/go-build4035683852/b2765/: no space left on device
testifylint: 17 errors during loading

Report issue: https://github.com/hashicorp/terraform-provider-azurerm/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682521407

Copy link

Run testifylint on Repo: https://github.com/pachyderm/pachyderm got output

https://github.com/pachyderm/pachyderm/blob/master/src/internal/middleware/logging/client/client_test.go#L32:2: len: use s.Require().Len
https://github.com/pachyderm/pachyderm/blob/master/src/internal/middleware/logging/client/client_test.go#L65:2: empty: use s.Emptyf
https://github.com/pachyderm/pachyderm/blob/master/src/internal/pachsql/url_test.go#L43:3: require-error: for error assertions use require
https://github.com/pachyderm/pachyderm/blob/master/src/server/pfs/server/testing/server_test.go#L5770:7: expected-actual: need to reverse actual and expected values
https://github.com/pachyderm/pachyderm/blob/master/src/server/pfs/server/testing/server_test.go#L5770:57: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/pachyderm/pachyderm/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682559693

Copy link

Run testifylint on Repo: https://github.com/anchore/syft got output

https://github.com/anchore/syft/blob/main/syft/format/internal/testutil/snapshot.go#L42:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/cmd/syft/cli/ui/handle_cataloger_task_test.go#L187:4: empty: use require.Empty
https://github.com/anchore/syft/blob/main/cmd/syft/internal/commands/attest_test.go#L324:3: len: use assert.Len
https://github.com/anchore/syft/blob/main/cmd/syft/internal/options/writer_test.go#L206:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/cmd/syft/internal/test/integration/java_purl_test.go#L31:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/anchore/syft/blob/main/cmd/syft/internal/test/integration/java_purl_test.go#L35:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/anchore/syft/blob/main/cmd/syft/internal/test/integration/license_list_test.go#L36:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/cmd/syft/internal/test/integration/package_cataloger_convention_test.go#L160:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/cmd/syft/internal/ui/capture_test.go#L37:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anchore/syft/blob/main/cmd/syft/internal/ui/capture_test.go#L41:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anchore/syft/blob/main/internal/buffered_seek_reader_test.go#L43:6: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/internal/buffered_seek_reader_test.go#L137:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/create_sbom_config_test.go#L363:3: empty: use require.NotEmpty
https://github.com/anchore/syft/blob/main/syft/cpe/cpe_test.go#L166:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/cpe/cpe_test.go#L96:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/cpe/cpe_test.go#L98:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/file/cataloger/filecontent/cataloger_test.go#L78:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/file/cataloger/filedigest/cataloger_test.go#L160:5: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/decoders_collection_test.go#L32:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/decoders_collection_test.go#L44:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/decoders_collection_test.go#L49:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_format_model_test.go#L672:6: empty: use require.Empty
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L105:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L107:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L111:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L113:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/format/common/spdxhelpers/to_syft_model_test.go#L96:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/internal/cyclonedxutil/helpers/decoder_test.go#L287:2: error-nil: use assert.NoError
https://github.com/anchore/syft/blob/main/syft/format/internal/cyclonedxutil/helpers/decoder_test.go#L324:2: bool-compare: use assert.True
https://github.com/anchore/syft/blob/main/syft/format/internal/cyclonedxutil/helpers/decoder_test.go#L206:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/internal/cyclonedxutil/helpers/decoder_test.go#L310:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/internal/cyclonedxutil/helpers/decoder_test.go#L315:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/internal/spdxutil/helpers/document_name_test.go#L60:4: formatter: remove unnecessary fmt.Sprintf
https://github.com/anchore/syft/blob/main/syft/format/internal/spdxutil/helpers/document_namespace_test.go#L64:4: formatter: remove unnecessary fmt.Sprintf
https://github.com/anchore/syft/blob/main/syft/format/spdxjson/decoder_test.go#L118:5: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/format/spdxjson/encoder_test.go#L273:4: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/format/spdxjson/decoder_test.go#L127:6: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/spdxtagvalue/encoder_test.go#L183:4: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/format/syftjson/decoder_test.go#L60:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/syftjson/decoder_test.go#L63:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/syftjson/to_syft_model_test.go#L510:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/syftjson/to_syft_model_test.go#L514:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/format/syftjson/model/package_test.go#L428:5: len: use require.Len
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_indexer_test.go#L131:4: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_indexer_test.go#L212:4: bool-compare: use assert.True
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_indexer_test.go#L214:4: bool-compare: use assert.True
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L944:4: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/excluding_file_test.go#L99:5: error-nil: use assert.NoError
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/excluding_file_test.go#L102:5: error-nil: use assert.NoError
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L1259:2: empty: use require.Empty
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L520:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L747:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L749:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L775:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L332:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L832:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L646:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L738:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L740:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L616:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L255:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L258:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L677:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L941:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L943:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L244:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L247:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L344:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L782:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L561:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_indexer_test.go#L205:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L755:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L757:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L359:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L502:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L725:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L727:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L755:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L319:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L805:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L809:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L506:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L782:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L536:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/excluding_file_test.go#L87:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/excluding_file_test.go#L90:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/unindexed_directory_test.go#L767:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L272:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L275:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L282:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_all_layers_test.go#L289:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L1185:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L1387:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L261:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L264:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L271:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/container_image_squash_test.go#L278:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/internal/fileresolver/directory_test.go#L1364:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/license_test.go#L224:4: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/pkg/license_test.go#L225:4: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/alpine/parse_apk_db_test.go#L67:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1111:2: empty: use assert.Empty
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1227:5: empty: use assert.Empty
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1104:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1107:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1110:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/classifier_cataloger_test.go#L1390:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/binary/test-fixtures/manager/internal/config/application_test.go#L61:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/debian/parse_dpkg_db_test.go#L301:3: error-is-as: second argument to require.ErrorAs should not be *error
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/dotnet/parse_dotnet_portable_executable_test.go#L277:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/generic/cataloger_test.go#L51:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/cataloger_test.go#L170:4: expected-actual: need to reverse actual and expected values
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L104:3: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L110:3: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L115:4: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L117:4: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L119:4: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L123:3: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/licenses_test.go#L128:3: go-require: do not use require in http handlers
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/golang/cataloger_test.go#L169:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/internal/cpegenerate/dictionary/index-generator/generate_test.go#L34:2: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L37:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L40:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L45:5: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/parse_pom_xml_test.go#L370:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/parse_pom_xml_test.go#L373:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L118:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L123:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/graalvm_native_image_cataloger_test.go#L132:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/parse_pom_properties_test.go#L66:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/parse_pom_properties_test.go#L69:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/java/archive_parser_test.go#L167:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/r/parse_description_test.go#L46:6: len: use assert.Len
https://github.com/anchore/syft/blob/main/syft/pkg/cataloger/r/parse_description_test.go#L62:4: require-error: for error assertions use require
https://github.com/anchore/syft/blob/main/syft/source/directorysource/directory_source_test.go#L439:4: empty: use assert.Empty

Report issue: https://github.com/anchore/syft/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682594791

Copy link

Run testifylint on Repo: https://github.com/goss-org/goss got output

https://github.com/goss-org/goss/blob/master/outputs/outputs_test.go#L32:3: require-error: for error assertions use require
https://github.com/goss-org/goss/blob/master/outputs/outputs_test.go#L27:3: require-error: for error assertions use require
https://github.com/goss-org/goss/blob/master/resource/gomega_test.go#L163:2: expected-actual: need to reverse actual and expected values

Report issue: https://github.com/goss-org/goss/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682610068

Copy link

Run testifylint on Repo: https://github.com/contribsys/faktory got output

https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L27:3: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L58:3: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L40:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L57:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/cli_test.go#L37:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L34:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L67:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L77:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L26:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L47:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/cli/security_test.go#L50:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L98:3: empty: use assert.Empty
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L109:3: expected-actual: need to reverse actual and expected values
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L111:3: expected-actual: need to reverse actual and expected values
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L81:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L34:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L38:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L41:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L12:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L16:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L86:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L88:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L92:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L101:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L115:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L46:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L48:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L52:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L60:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L65:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L70:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L76:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L80:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L85:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L96:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L102:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L107:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L112:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L117:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L123:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L129:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L134:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L143:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/client_test.go#L145:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/job_test.go#L15:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L38:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L54:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L56:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L60:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L21:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L23:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L27:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/client/pool_test.go#L49:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/internal/pool/pool_test.go#L18:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/internal/pool/pool_test.go#L23:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L27:2: empty: use assert.Empty
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L29:2: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L31:2: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L117:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L121:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L126:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L131:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L135:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L29:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L69:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L81:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L86:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L96:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L108:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L116:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L131:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L137:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L128:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L136:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L143:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L148:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L154:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L158:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L164:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L82:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L101:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L74:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L80:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L166:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L172:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L176:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L180:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L185:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L189:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L153:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L110:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L117:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L215:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L220:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L226:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L231:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L237:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L243:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L246:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L253:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L256:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L259:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L101:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L103:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L81:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L93:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L189:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L192:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L200:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L67:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L72:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L86:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/working_test.go#L50:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L167:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L172:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L177:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L310:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L327:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L113:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L123:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L133:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L32:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L38:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L48:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L62:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L91:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L97:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L159:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L60:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L70:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L149:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L156:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/middleware_test.go#L41:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L106:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L110:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L114:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L32:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/scheduler_test.go#L48:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L269:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L274:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L280:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L285:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L291:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/manager_test.go#L298:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L28:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L41:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L51:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/manager/retry_test.go#L62:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L134:3: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L60:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L64:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L68:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L76:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L82:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L87:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L92:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L97:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L102:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L104:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L110:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L117:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L122:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L127:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L129:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L133:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L138:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L143:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/server_test.go#L148:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/connection_test.go#L20:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/connection_test.go#L24:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/connection_test.go#L28:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/connection_test.go#L32:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/connection_test.go#L36:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L15:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L17:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L21:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L26:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L31:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L36:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L41:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L46:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L49:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L53:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L56:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L61:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L64:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L67:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L73:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L76:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L82:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/mutate_test.go#L85:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/workers_test.go#L15:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/workers_test.go#L19:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/workers_test.go#L23:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/server/workers_test.go#L29:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L43:3: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L104:4: expected-actual: need to reverse actual and expected values
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L83:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L87:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L94:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L99:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L103:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L109:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L113:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L117:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L122:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L129:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L152:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L37:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L133:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L20:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L23:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L31:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L33:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/history_test.go#L42:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/redis_test.go#L20:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/redis_test.go#L27:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/redis_test.go#L30:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L67:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L72:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L75:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L82:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L87:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L91:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L96:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L101:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L105:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L167:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L173:3: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L21:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L30:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L42:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L54:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L48:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L115:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L119:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L125:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L137:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L147:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L150:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L155:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L160:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L167:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L176:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L179:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/sorted_test.go#L186:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L21:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L26:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L30:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L34:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L45:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L48:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L53:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L59:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L61:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L63:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L65:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L69:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L71:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L73:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/storage/queue_test.go#L75:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/go_system_test.go#L103:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L28:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L38:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L67:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L82:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L97:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L103:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L112:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L121:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/test/ent/batch_test.go#L127:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L17:2: error-nil: use assert.NoError
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L21:2: error-nil: use assert.NoError
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L26:2: error-nil: use assert.NoError
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L33:2: compares: use assert.Greater
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L34:2: compares: use assert.Less
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L63:2: len: use assert.Len
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L69:2: compares: use assert.Less
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L56:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/util/util_test.go#L60:2: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L29:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/web_test.go#L31:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L102:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L106:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L108:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L114:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L127:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L417:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L452:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L469:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L381:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L407:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L139:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L144:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L147:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L151:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L155:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L162:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L172:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L175:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L185:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L199:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L208:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L224:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L232:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L234:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/web_test.go#L21:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L80:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L84:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L86:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L88:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L90:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L311:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L316:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L319:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L482:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L515:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/web_test.go#L41:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L40:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L45:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L47:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L49:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L53:5: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L71:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L266:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L271:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L275:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L282:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L297:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L249:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L254:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L257:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L328:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L333:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L337:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L349:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L354:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L357:4: require-error: for error assertions use require
https://github.com/contribsys/faktory/blob/main/webui/pages_test.go#L369:4: require-error: for error assertions use require

Report issue: https://github.com/contribsys/faktory/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682611316

Copy link

Run testifylint on Repo: https://github.com/easegress-io/easegress got output

https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L243:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L250:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L252:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L255:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L290:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L553:4: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L594:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L596:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L599:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L697:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L713:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L748:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L752:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L755:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L764:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L766:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L779:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L781:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L884:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L890:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L896:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L900:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L903:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L910:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L912:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1015:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1022:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1038:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1044:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1047:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1054:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1056:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1066:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1072:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1076:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1079:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1087:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1159:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1171:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1174:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1176:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1183:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1302:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1308:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1310:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1313:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1349:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1352:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1369:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1372:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1388:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1391:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1399:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1411:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1423:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1435:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1447:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1459:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1471:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1486:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1503:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1518:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1533:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1594:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1602:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1629:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1631:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1670:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1686:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1691:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1706:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1721:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1727:3: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1739:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1749:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1759:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1769:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1777:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1786:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1797:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1804:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L277:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L503:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L506:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L509:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L514:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L520:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L525:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L530:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L533:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1557:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1576:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L59:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L76:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L91:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L95:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L113:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L117:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L122:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L128:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L131:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L210:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L230:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L675:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L577:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L585:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L589:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L615:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L629:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L642:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L652:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L658:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L664:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L145:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L159:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L163:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L177:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L180:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L185:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L188:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L473:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L479:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1101:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1113:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1126:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1137:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1218:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1227:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1237:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1245:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1255:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1291:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L1298:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L300:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L309:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L320:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L332:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L338:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L347:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L355:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L362:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L367:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L374:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L379:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L400:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L429:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L433:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L440:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L448:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/build/test/integration_test.go#L456:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/context_test.go#L44:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/context_test.go#L46:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/context_test.go#L69:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/context_test.go#L74:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/validation_test.go#L65:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/easegress-io/easegress/blob/main/cmd/builder/utils/validation_test.go#L108:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L32:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L35:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L38:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L41:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L63:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/cmd_test.go#L66:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L42:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L76:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L143:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L145:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L146:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L147:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L180:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L261:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L270:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L272:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L294:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/convert_test.go#L297:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L52:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L54:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L95:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L100:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L105:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L128:5: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/env_test.go#L130:5: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L63:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L64:3: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L96:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L99:3: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L138:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L141:3: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L217:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L223:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L225:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L307:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L312:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L343:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L345:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L368:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L391:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/parse_test.go#L392:3: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/test_test.go#L45:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/test_test.go#L51:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/test_test.go#L55:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/convert/nginx/test_test.go#L70:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L49:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L76:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L99:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L102:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L107:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L180:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L183:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L195:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L201:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L206:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L214:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L226:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L241:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L273:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L329:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L334:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L337:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L345:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L364:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L368:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L370:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L375:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L379:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L385:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L391:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L396:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L421:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L424:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L428:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L466:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L469:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/cmd/client/commandv2/create/createhttpproxy_test.go#L474:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L292:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L296:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L300:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L639:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L667:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L669:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L677:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/cluster_test.go#L684:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L50:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L53:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L56:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L59:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L62:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L65:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L68:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L71:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L74:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L77:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L80:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L83:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L89:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L91:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L94:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/op_test.go#L97:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/syncer_test.go#L47:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/syncer_test.go#L56:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/syncer_test.go#L69:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/syncer_test.go#L72:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L99:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L145:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L201:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L257:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L316:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/cluster/watcher_test.go#L375:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/filters_test.go#L81:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/filters_test.go#L84:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/filters_test.go#L93:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/filters_test.go#L106:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/builder_test.go#L39:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/builder_test.go#L45:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L29:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L30:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L31:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L32:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L33:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L34:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L35:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L36:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L37:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L38:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L39:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L40:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L41:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L49:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L50:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L51:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L52:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/extrafuncs_test.go#L102:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L44:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L46:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L62:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L142:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L155:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L163:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L189:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L201:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L204:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L223:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L236:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L239:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L247:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L260:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L263:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L292:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L309:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L354:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestadaptor_test.go#L371:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L59:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L83:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L128:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L153:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L185:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L194:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L288:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L296:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L315:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L323:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L342:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L350:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L373:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L381:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L455:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L484:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L93:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L104:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L114:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L167:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L172:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L175:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L192:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L195:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L215:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responseadaptor_test.go#L255:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L110:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L118:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L151:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L168:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L176:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L193:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L201:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L221:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L229:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L264:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L292:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L314:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/responsebuilder_test.go#L324:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/resultbuilder_test.go#L38:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/databuilder_test.go#L191:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/databuilder_test.go#L50:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/databuilder_test.go#L80:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/databuilder_test.go#L122:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/databuilder_test.go#L162:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L506:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/builder/requestbuilder_test.go#L516:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L83:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L86:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L87:2: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L90:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L91:2: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/filters/certextractor/certextractor_test.go#L101:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/connectcontrol/connectcontrol_test.go#L63:2: empty: use assert.NotEmpty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/connectcontrol/connectcontrol_test.go#L77:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/connectcontrol/connectcontrol_test.go#L78:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/connectcontrol/connectcontrol_test.go#L104:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/connectcontrol/connectcontrol_test.go#L105:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/corsadaptor/corsadaptor_test.go#L33:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/corsadaptor/corsadaptor_test.go#L59:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/corsadaptor/corsadaptor_test.go#L105:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/fallback/fallback_test.go#L58:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/fallback/fallback_test.go#L66:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/fallback/fallback_test.go#L84:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/fallback/fallback_test.go#L93:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L139:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L143:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L169:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L171:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L204:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L225:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L246:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L255:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L258:2: empty: use assert.NotEmpty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headerlookup/headerlookup_test.go#L298:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L41:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L43:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L72:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L74:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L102:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L105:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L116:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L120:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L129:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L139:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L143:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L154:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L157:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L168:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L172:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L190:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/headertojson/headertojson_test.go#L194:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafka/kafka_test.go#L143:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafka/kafka_test.go#L154:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafka/kafka_test.go#L186:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafka/kafka_test.go#L188:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L131:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L137:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L139:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L192:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L202:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L205:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L208:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L213:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L221:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L225:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L268:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L278:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L281:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L284:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L289:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L297:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/kafkabackend/kafka_test.go#L301:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L36:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L112:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L124:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L133:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L140:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L150:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L161:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L172:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L178:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L188:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mock/mock_test.go#L201:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/mqttclientauth/mqttauth_test.go#L63:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/opafilter/opafilter_test.go#L37:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/loadbalance_test.go#L68:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/loadbalance_test.go#L80:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/serverpool_test.go#L32:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/serverpool_test.go#L38:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/serverpool_test.go#L41:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/requestmatch_test.go#L33:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/requestmatch_test.go#L37:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/requestmatch_test.go#L42:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/requestmatch_test.go#L45:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/requestmatch_test.go#L48:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L100:2: compares: use as.Equal
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L108:2: compares: use as.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L157:2: error-nil: use assertions.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L160:2: compares: use assertions.Same
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L39:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L43:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L50:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L57:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L60:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/requestmatch_test.go#L63:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L38:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L41:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L47:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L180:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L192:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L84:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L94:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L97:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L100:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L103:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L106:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L46:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/proxy_test.go#L49:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/codec_test.go#L35:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/codec_test.go#L40:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L93:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L99:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/grpcproxy/pool_test.go#L106:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L208:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L211:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L258:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L324:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L510:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L513:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L552:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L595:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/healthcheck_test.go#L616:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L185:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L188:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L192:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L195:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L209:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L131:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L132:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L397:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L133:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L47:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L48:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L59:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L60:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L74:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L49:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L50:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L62:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/pool_test.go#L63:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L43:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L47:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L51:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L55:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L59:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L63:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wspool_test.go#L69:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L81:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/wsproxy_test.go#L84:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L173:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L53:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L56:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L254:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L255:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L266:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L267:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L281:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L282:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L297:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L298:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L319:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L320:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L334:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/simplehttpproxy_test.go#L36:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/simplehttpproxy_test.go#L39:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/proxy_test.go#L355:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L34:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L38:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L45:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L54:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/proxies/httpproxy/requestmatch_test.go#L59:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L131:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L133:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L212:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L214:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L241:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirector/redirector_test.go#L295:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/filters/redirectorv2/redirectorv2_test.go#L143:5: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/filters/topicmapper/spec_test.go#L68:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L43:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L98:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L167:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L172:7: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L178:7: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L199:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L262:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L308:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L367:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L461:4: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/filters/validator/validator_test.go#L612:4: compares: use assert.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/mux_test.go#L59:2: compares: use assert.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/mux_test.go#L83:2: compares: use assert.Same
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/mux_test.go#L323:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/mux_test.go#L327:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/runtime_test.go#L95:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/mux_test.go#L36:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/spec_test.go#L79:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/grpcserver_test.go#L47:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/grpcserver_test.go#L60:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/runtime_test.go#L41:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/spec_test.go#L37:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/grpcserver/spec_test.go#L62:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L245:5: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L248:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L251:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L252:4: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L255:5: expected-actual: need to reverse actual and expected values
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/mux_test.go#L64:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/mux_test.go#L94:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/mux_test.go#L151:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/runtime_test.go#L43:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/runtime_test.go#L74:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/runtime_test.go#L90:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/mux_test.go#L195:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/mux_test.go#L383:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/httpserver_test.go#L51:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/httpserver_test.go#L64:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L55:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L69:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/spec_test.go#L82:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/routers_test.go#L58:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/routers_test.go#L65:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/routers_test.go#L74:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L75:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L81:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L215:2: compares: use assert.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L216:2: compares: use assert.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L217:2: compares: use assert.Equal
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L503:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L222:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/httpserver/routers/spec_test.go#L640:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L158:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L177:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1286:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1291:2: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1384:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1394:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1971:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1979:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L1996:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2000:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2006:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2010:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2055:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2073:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2080:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2091:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2098:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/mqtt_test.go#L2116:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L33:3: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L45:4: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L47:4: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L60:4: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L62:4: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L72:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L74:2: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L77:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L89:4: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L91:4: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L105:4: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L107:4: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L121:4: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/ratelimiter_test.go#L123:4: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/session_test.go#L59:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/session_test.go#L66:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/session_test.go#L72:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/mqttproxy/sessioncache_test.go#L76:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L113:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L135:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L156:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L172:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L188:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L375:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L383:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L385:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L405:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L419:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L421:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L436:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L462:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/object/pipeline/pipeline_test.go#L487:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/option/env_test.go#L63:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L93:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L194:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L202:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/option/env_test.go#L80:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L48:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L56:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L81:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L88:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/env_test.go#L61:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/env_test.go#L104:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/env_test.go#L120:3: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L38:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L40:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/option/option_test.go#L103:4: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/grpcprot/request_test.go#L141:2: useless-assert: asserting of the same variable
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/grpcprot/request_test.go#L144:2: compares: use assertions.NotEqual
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/grpcprot/grpc_test.go#L33:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/grpcprot/grpc_test.go#L36:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/grpcprot/grpc_test.go#L39:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L32:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L74:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L83:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L86:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L92:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L106:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L116:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L122:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L134:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L145:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L154:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L160:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L171:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L183:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L191:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/http_test.go#L199:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L39:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L46:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L48:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L52:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L57:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L85:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L106:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L108:2: error-nil: use require.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L120:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L154:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L175:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L184:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L199:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L246:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/request_test.go#L262:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L35:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L41:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L46:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L71:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L76:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L81:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L86:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L103:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L106:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L114:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L140:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L143:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L153:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L165:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L168:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L177:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L180:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L189:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L207:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L214:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L221:3: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L228:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/protocols/httpprot/response_test.go#L234:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L44:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L59:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L79:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L129:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L162:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L166:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L167:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L182:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L186:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L190:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L194:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L198:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L202:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L206:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L210:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L217:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L220:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L227:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L234:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L237:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L241:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L245:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L273:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L283:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L295:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L304:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L311:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L320:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L332:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/tracing/tracing_test.go#L347:3: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L45:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L46:2: bool-compare: use assert.True
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L48:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L62:2: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L63:2: bool-compare: use assert.False
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L65:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L70:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L103:4: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L105:4: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L243:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L249:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L258:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L268:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L275:2: empty: use assert.Empty
https://github.com/easegress-io/easegress/blob/main/pkg/util/objectpool/objectpool_test.go#L282:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/bytecountreader_test.go#L33:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/bytecountreader_test.go#L38:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/bytecountreader_test.go#L39:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/callbackreader_test.go#L41:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/gzipcompressreader_test.go#L38:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/gzipcompressreader_test.go#L40:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/gzipcompressreader_test.go#L46:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/gzipcompressreader_test.go#L48:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/gzipcompressreader_test.go#L51:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L39:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L43:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L47:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L56:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L69:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/readers/readerat_test.go#L72:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L30:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L31:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L32:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L33:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L37:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L38:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L39:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L40:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L44:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L45:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L46:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L47:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L51:2: len: use assert.Len
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L52:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L53:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/sampler/sampler_test.go#L54:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/easegress-io/easegress/blob/main/pkg/util/stringtool/stringtool_test.go#L69:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/util/stringtool/stringtool_test.go#L73:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/util/stringtool/stringtool_test.go#L76:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/util/stringtool/stringtool_test.go#L79:2: require-error: for error assertions use require
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L49:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L51:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L52:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L54:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L55:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L57:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L58:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L60:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L61:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L63:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L64:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L66:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L67:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L69:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L70:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L72:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L73:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L75:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L76:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L78:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L79:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L81:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L82:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L84:2: error-nil: use assert.NoError
https://github.com/easegress-io/easegress/blob/main/pkg/v/format_test.go#L85:2: error-nil: use assert.Error
https://github.com/easegress-io/easegress/blob/main/pkg/v/v_test.go#L149:2: error-nil: use assert.NoError

Report issue: https://github.com/easegress-io/easegress/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682596736

Copy link

Run testifylint on Repo: https://github.com/goadesign/goa got output

https://github.com/goadesign/goa/blob/v3/codegen/example/example_client_test.go#L34:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/codegen/example/example_server_test.go#L44:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/codegen/service/example_svc_test.go#L41:6: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/codegen/service/service_test.go#L65:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/codegen/service/convert_test.go#L183:5: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/codegen/service/convert_test.go#L186:5: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/codegen/service/convert_test.go#L127:5: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/codegen/service/convert_test.go#L132:5: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/grpc/middleware/xray/middleware_test.go#L199:4: compares: use assert.LessOrEqual
https://github.com/goadesign/goa/blob/v3/grpc/middleware/xray/segment_test.go#L73:4: negative-positive: use assert.Positive
https://github.com/goadesign/goa/blob/v3/grpc/middleware/xray/segment_test.go#L131:4: negative-positive: use assert.Positive
https://github.com/goadesign/goa/blob/v3/http/encoding_test.go#L260:5: error-is-as: invalid usage of assert.Error, use assert.ErrorIs instead
https://github.com/goadesign/goa/blob/v3/http/encoding_test.go#L296:2: error-is-as: invalid usage of assert.Error, use assert.ErrorIs instead
https://github.com/goadesign/goa/blob/v3/http/encoding_test.go#L192:4: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/http/encoding_test.go#L275:2: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/http/encoding_test.go#L285:2: require-error: for error assertions use require
https://github.com/goadesign/goa/blob/v3/http/codegen/example_cli_test.go#L36:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/http/codegen/example_server_test.go#L46:6: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/http/codegen/example_server_test.go#L79:5: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/http/codegen/handler_test.go#L37:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/http/codegen/server_handler_test.go#L32:4: empty: use require.NotEmpty
https://github.com/goadesign/goa/blob/v3/http/codegen/example_server_test.go#L50:6: require-error: for error assertions use require

Report issue: https://github.com/goadesign/goa/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682609690

Copy link

Run testifylint on Repo: https://github.com/nats-io/nats.go got output

encoders/protobuf/protobuf_enc.go#L20:2: no required module provides package google.golang.org/protobuf/proto; to add it:
go get google.golang.org/protobuf/proto
https://github.com/nats-io/nats.go/blob/main/encoders/protobuf/protobuf_enc.go#L20:2: could not import google.golang.org/protobuf/proto (invalid package name: "")
jetstream/test/helper_test.go#L29:2: no required module provides package github.com/nats-io/nats-server/v2/server; to add it:
go get github.com/nats-io/nats-server/v2/server
jetstream/test/helper_test.go#L33:2: no required module provides package github.com/nats-io/nats-server/v2/test; to add it:
go get github.com/nats-io/nats-server/v2/test
jetstream/test/main_test.go#L19:2: no required module provides package go.uber.org/goleak; to add it:
go get go.uber.org/goleak
https://github.com/nats-io/nats.go/blob/main/jetstream/test/helper_test.go#L29:2: could not import github.com/nats-io/nats-server/v2/server (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/jetstream/test/helper_test.go#L33:13: could not import github.com/nats-io/nats-server/v2/test (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/jetstream/test/main_test.go#L19:2: could not import go.uber.org/goleak (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/jetstream/test/helper_test.go#L229:31: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/helper_test.go#L263:32: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L798:32: srv.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L842:36: srvs[0].ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L2616:37: srvs[0].ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L2665:37: srvs[0].ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L2737:37: srvs[0].ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L2778:13: srvs[0].Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/jetstream/test/pull_test.go#L2779:13: srvs[1].Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/micro/test/service_test.go#L28:2: could not import github.com/nats-io/nats-server/v2/server (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/micro/test/service_test.go#L33:13: could not import github.com/nats-io/nats-server/v2/test (invalid package name: "")
test/reconnect_test.go#L26:2: no required module provides package github.com/nats-io/jwt; to add it:
go get github.com/nats-io/jwt
encoders/protobuf/testdata/pbtest.pb.go#L10:2: no required module provides package github.com/golang/protobuf/proto; to add it:
go get github.com/golang/protobuf/proto
encoders/protobuf/testdata/pbtest.pb.go#L11:2: no required module provides package google.golang.org/protobuf/reflect/protoreflect; to add it:
go get google.golang.org/protobuf/reflect/protoreflect
encoders/protobuf/testdata/pbtest.pb.go#L12:2: no required module provides package google.golang.org/protobuf/runtime/protoimpl; to add it:
go get google.golang.org/protobuf/runtime/protoimpl
https://github.com/nats-io/nats.go/blob/main/encoders/protobuf/testdata/pbtest.pb.go#L10:8: could not import github.com/golang/protobuf/proto (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/encoders/protobuf/testdata/pbtest.pb.go#L11:15: could not import google.golang.org/protobuf/reflect/protoreflect (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/encoders/protobuf/testdata/pbtest.pb.go#L12:12: could not import google.golang.org/protobuf/runtime/protoimpl (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/test/auth_test.go#L25:2: could not import github.com/nats-io/nats-server/v2/server (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/test/auth_test.go#L26:2: could not import github.com/nats-io/nats-server/v2/test (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/test/main_test.go#L19:2: could not import go.uber.org/goleak (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/test/reconnect_test.go#L26:2: could not import github.com/nats-io/jwt (invalid package name: "")
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L6327:31: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L6370:32: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L6875:30: srv.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7212:31: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7263:10: srvA.Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7264:10: srvA.WaitForShutdown undefined (type *jsServer has no field or method WaitForShutdown)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7361:31: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7411:9: srvA.Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7440:24: srvB.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7441:24: srvC.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7448:10: srvB.Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7450:10: srvC.Shutdown undefined (type *jsServer has no field or method Shutdown)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7474:31: srvA.ClientURL undefined (type *jsServer has no field or method ClientURL)
https://github.com/nats-io/nats.go/blob/main/test/js_test.go#L7579:10: srvA.Shutdown undefined (type *jsServer has no field or method Shutdown)
testifylint: 44 errors during loading

Report issue: https://github.com/nats-io/nats.go/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682613582

Copy link

Run testifylint on Repo: https://github.com/projectcalico/calico got output

-: # github.com/google/gopacket/pcap
../../../../go/pkg/mod/github.com/google/gopacket@v1.1.19/pcap/pcap_unix.go#L34:10: fatal error: pcap.h: No such file or directory
34 | #include <pcap.h>
|          ^~~~~~~~
compilation terminated.
/home/runner/go/pkg/mod/github.com/google/gopacket@v1.1.19/pcap/pcap_unix.go#L167:8: could not import C (no metadata for C)
testifylint: 2 errors during loading

Report issue: https://github.com/projectcalico/calico/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682575023

Copy link

Run testifylint on Repo: https://github.com/rebuy-de/aws-nuke got output

resources/cloudformation-stack_test.go#L10:2: no required module provides package github.com/rebuy-de/aws-nuke/v2/mocks/mock_cloudformationiface; to add it:
go get github.com/rebuy-de/aws-nuke/v2/mocks/mock_cloudformationiface
https://github.com/rebuy-de/aws-nuke/blob/main/resources/cloudformation-stack_test.go#L10:2: could not import github.com/rebuy-de/aws-nuke/v2/mocks/mock_cloudformationiface (invalid package name: "")
testifylint: 2 errors during loading

Report issue: https://github.com/rebuy-de/aws-nuke/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682601851

Copy link

Run testifylint on Repo: https://github.com/h2non/imaginary got output

-: # github.com/h2non/bimg
# [pkg-config --cflags  -- vips vips vips vips]
Package vips was not found in the pkg-config search path.
Perhaps you should add the directory containing `vips.pc'
to the PKG_CONFIG_PATH environment variable
Package 'vips', required by 'virtual:world', not found
Package 'vips', required by 'virtual:world', not found
Package 'vips', required by 'virtual:world', not found
Package 'vips', required by 'virtual:world', not found
/home/runner/go/pkg/mod/github.com/h2non/bimg@v1.1.7/metadata.go#L7:8: could not import C (no metadata for C)
middleware.go#L14:2: no required module provides package github.com/throttled/throttled/v2; to add it:
go get github.com/throttled/throttled/v2
middleware.go#L15:2: no required module provides package github.com/throttled/throttled/v2/store/memstore; to add it:
go get github.com/throttled/throttled/v2/store/memstore
https://github.com/h2non/imaginary/blob/master/middleware.go#L14:2: could not import github.com/throttled/throttled/v2 (invalid package name: "")
https://github.com/h2non/imaginary/blob/master/middleware.go#L15:2: could not import github.com/throttled/throttled/v2/store/memstore (invalid package name: "")
https://github.com/h2non/imaginary/blob/master/middleware.go#L74:11: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L74:40: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L75:22: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L80:21: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L82:17: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L14:2: could not import github.com/throttled/throttled/v2 (invalid package name: "")
https://github.com/h2non/imaginary/blob/master/middleware.go#L15:2: could not import github.com/throttled/throttled/v2/store/memstore (invalid package name: "")
https://github.com/h2non/imaginary/blob/master/middleware.go#L74:11: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L74:40: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L75:22: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L80:21: undefined: throttled
https://github.com/h2non/imaginary/blob/master/middleware.go#L82:17: undefined: throttled
testifylint: 18 errors during loading

Report issue: https://github.com/h2non/imaginary/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682612156

Copy link

Run testifylint on Repo: https://github.com/google/syzkaller got output

https://github.com/google/syzkaller/blob/master/dashboard/app/tree_test.go#L263:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/dashboard/app/tree_test.go#L270:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/dashboard/app/tree_test.go#L271:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/dashboard/app/tree_test.go#L302:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/dashboard/app/tree_test.go#L341:2: empty: use assert.Empty
https://github.com/google/syzkaller/blob/master/pkg/asset/backend_gcs_test.go#L35:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/asset/backend_gcs_test.go#L39:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/asset/backend_gcs_test.go#L43:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/bisect/minimize/slice_test.go#L28:2: empty: use assert.Empty
https://github.com/google/syzkaller/blob/master/pkg/bisect/minimize/slice_test.go#L27:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/bisect/minimize/slice_test.go#L41:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/bisect/minimize/slice_test.go#L77:3: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/corpus/corpus_test.go#L30:2: bool-compare: use assert.False
https://github.com/google/syzkaller/blob/master/pkg/corpus/corpus_test.go#L51:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/corpus/corpus_test.go#L52:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/corpus/corpus_test.go#L53:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/corpus/corpus_test.go#L77:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/cover/manager_to_ci_test.go#L37:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/cover/manager_to_ci_test.go#L40:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/covermerger/covermerger_test.go#L135:4: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/pkg/covermerger/covermerger_test.go#L137:4: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/pkg/covermerger/covermerger_test.go#L159:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/pkg/covermerger/covermerger_test.go#L161:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/pkg/csource/csource_test.go#L271:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/fuzzer_test.go#L162:2: len: use assert.Len
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/fuzzer_test.go#L167:2: len: use assert.Len
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/fuzzer_test.go#L176:2: len: use assert.Len
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/fuzzer_test.go#L154:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/job_test.go#L79:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/fuzzer/job_test.go#L81:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/rpcserver/last_executing_test.go#L38:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L24:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L26:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L28:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L32:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L34:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L43:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L45:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L47:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L49:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L51:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L53:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L56:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L60:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L62:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L67:2: len: use a.Len
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L68:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L70:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L71:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L72:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L75:2: len: use a.Len
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L76:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L77:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L80:2: len: use a.Len
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L81:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L91:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L93:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L95:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L109:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L112:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L116:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L118:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L119:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L121:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L122:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L123:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L124:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L126:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L127:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L128:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L129:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L141:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L142:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L143:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L144:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L145:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L146:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L147:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L148:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L149:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L150:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L151:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L152:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L174:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L175:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L176:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L177:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L178:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L179:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/stats/set_test.go#L21:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L20:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L21:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L22:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L25:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L26:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/coincidence_test.go#L27:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/path_coincidence_test.go#L37:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/subsystem/linux/parents_test.go#L118:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/vcs/linux_test.go#L20:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/vcs/linux_test.go#L26:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/vcs/linux_test.go#L37:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/vcs/linux_test.go#L43:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/vcs/linux_test.go#L49:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/pkg/vcs/git_test.go#L423:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/vcs/git_test.go#L425:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/pkg/vminfo/linux_test.go#L171:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L276:2: negative-positive: use assert.Positive
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L277:2: negative-positive: use assert.Positive
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L278:2: negative-positive: use assert.Positive
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L13:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L14:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L15:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L22:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L26:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/target_test.go#L31:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/prog/collide_test.go#L202:4: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L186:4: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L188:4: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/prog/encoding_test.go#L396:3: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/prog/expr_test.go#L125:5: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/syz-ci/manager_test.go#L106:2: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/tools/syz-testbed/table_test.go#L21:2: require-error: for error assertions use require
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L90:4: expected-actual: need to reverse actual and expected values
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L97:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L98:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L100:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L101:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/init_test.go#L102:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_tcp_test.go#L69:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_tcp_test.go#L120:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_tcp_test.go#L127:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L72:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L82:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L107:3: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L135:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L171:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L243:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L261:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L276:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L287:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L303:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L330:2: bool-compare: use assert.False
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L334:2: bool-compare: use assert.False
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L345:2: bool-compare: use assert.False
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L359:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L371:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L388:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L400:2: error-nil: use assert.Error
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L416:2: error-nil: use assert.NoError
https://github.com/google/syzkaller/blob/master/vm/proxyapp/proxyappclient_test.go#L506:2: error-nil: use assert.NoError

Report issue: https://github.com/google/syzkaller/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682600702

Copy link

Run testifylint on Repo: https://github.com/kubevirt/kubevirt got output

-: C source files not allowed when not using cgo or SWIG: main.c
-: # libvirt.org/go/libvirt
# [pkg-config --cflags  -- libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt-lxc libvirt-qemu libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt libvirt]
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt-lxc was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt-lxc.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt-lxc' found
Package libvirt-qemu was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt-qemu.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt-qemu' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
Package libvirt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libvirt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libvirt' found
https://github.com/kubevirt/kubevirt/blob/main/vendor/libvirt.org/go/libvirt/callbacks.go#L63:8: could not import C (no metadata for C)
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/errors/errors.go#L42:25: cannot use libvirt.ERR_NO_DOMAIN (constant unknown with invalid type) as libvirt.ErrorNumber value in argument to checkError
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/cli/libvirt.go#L251:50: cannot use libvirt.DOMAIN_QEMU_AGENT_COMMAND_DEFAULT (constant unknown with invalid type) as libvirt.DomainQemuAgentCommandTimeout value in argument to domain.QemuAgentCommand
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/util/libvirt_helper.go#L47:2: cannot use libvirt.DOMAIN_NOSTATE (constant unknown with invalid type) as libvirt.DomainState value in map literal
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/device/hostdevice/hotplug.go#L38:36: invalid operation: operator | not defined on libvirt.DOMAIN_DEVICE_MODIFY_LIVE (constant unknown with invalid type)
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/manager.go#L102:46: invalid operation: operator | not defined on libvirt.DOMAIN_DEVICE_MODIFY_LIVE (constant unknown with invalid type)
tools/tools.go#L5:2: import "github.com/onsi/ginkgo/v2/ginkgo" is a program, not an importable package
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/notify-client/notify_test.go#L137:105: cannot use libvirt.ERR_NO_DOMAIN (constant unknown with invalid type) as libvirt.ErrorNumber value in struct literal
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/manager.go#L102:46: invalid operation: operator | not defined on libvirt.DOMAIN_DEVICE_MODIFY_LIVE (constant unknown with invalid type)
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/cli/libvirt.go#L251:50: cannot use libvirt.DOMAIN_QEMU_AGENT_COMMAND_DEFAULT (constant unknown with invalid type) as libvirt.DomainQemuAgentCommandTimeout value in argument to domain.QemuAgentCommand
https://github.com/kubevirt/kubevirt/blob/main/pkg/virt-launcher/virtwrap/util/libvirt_helper.go#L47:2: cannot use libvirt.DOMAIN_NOSTATE (constant unknown with invalid type) as libvirt.DomainState value in map literal
-: # kubevirt.io/kubevirt/tools/util [kubevirt.io/kubevirt/tools/util.test]
tools/util/marshaller_test.go#L32:195: not enough arguments in call to components.NewHandlerDaemonSet
have (string, string, string, string, string, string, string, string, string, string, string, string, "k8s.io/api/core/v1".PullPolicy, []"k8s.io/api/core/v1".LocalObjectReference, nil, string, nil, bool)
want (string, string, string, string, string, string, string, string, string, string, string, string, string, string, "k8s.io/api/core/v1".PullPolicy, []"k8s.io/api/core/v1".LocalObjectReference, *string, string, map[string]string, bool)
https://github.com/kubevirt/kubevirt/blob/main/tools/util/marshaller_test.go#L32:200: not enough arguments in call to components.NewHandlerDaemonSet
have (string, string, string, string, string, string, string, string, string, string, string, string, "k8s.io/api/core/v1".PullPolicy, []"k8s.io/api/core/v1".LocalObjectReference, nil, string, nil, bool)
want (string, string, string, string, string, string, string, string, string, string, string, string, string, string, "k8s.io/api/core/v1".PullPolicy, []"k8s.io/api/core/v1".LocalObjectReference, *string, string, map[string]string, bool)
testifylint: 15 errors during loading

Report issue: https://github.com/kubevirt/kubevirt/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682592851

Copy link

Run testifylint on Repo: https://github.com/gorgonia/gorgonia got output

-: # gorgonia.org/cu
../../../../go/pkg/mod/gorgonia.org/cu@v0.9.4/addressing.go#L3:11: fatal error: cuda.h: No such file or directory
3 | // #include <cuda.h>
|           ^~~~~~~~
compilation terminated.
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/addressing.go#L4:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L110:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L111:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L112:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L113:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L114:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L115:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L116:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L117:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L118:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L119:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L120:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L121:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L122:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L123:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L124:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L125:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L126:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L127:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L128:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L129:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L130:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L131:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L132:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L133:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L134:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L135:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L136:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L137:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L138:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L139:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L140:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L141:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L142:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L143:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L144:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L145:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L146:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L147:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L148:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L149:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L150:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L151:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L152:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L153:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L154:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L155:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L156:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L157:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L158:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L159:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L160:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L161:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L162:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L163:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L164:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L165:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L166:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L167:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L168:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L169:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L170:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L171:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L172:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L173:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L174:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L175:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L176:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L177:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L178:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L179:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L180:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L181:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L182:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L183:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/result.go#L184:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/blas.go#L15:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L38:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L39:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L40:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L41:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L42:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L43:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L44:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L45:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/blas/status.go#L46:2: duplicate key unknown in map literal
-: # gorgonia.org/cu/dnn
../../../../go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/convolution.go#L3:11: fatal error: cudnn.h: No such file or directory
3 | // #include <cudnn.h>
|           ^~~~~~~~~
compilation terminated.
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/cgoflags.go#L14:8: could not import C (no metadata for C)
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L10:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L11:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L12:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L13:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L14:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L21:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L22:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L23:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L24:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L25:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L26:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L27:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L28:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L29:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L30:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L31:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L32:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L33:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L34:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L35:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L36:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L37:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L38:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L39:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L40:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L41:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L42:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L43:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L44:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L45:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L46:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L47:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L48:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L49:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L50:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L51:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L52:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L53:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L54:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L55:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L56:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L57:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L58:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L59:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L60:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L61:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L62:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L63:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L64:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L65:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L66:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L67:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L68:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L69:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L70:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L71:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L72:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L73:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L74:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L75:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L76:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L77:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L78:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L79:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L80:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L81:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L82:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L83:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L84:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L85:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L86:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L87:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L88:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L89:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L90:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L91:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L92:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L93:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L94:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L95:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L96:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L97:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L98:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L99:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L100:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L101:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L102:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L103:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L110:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L111:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L112:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L113:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L114:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L115:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L116:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L117:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L118:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L119:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L120:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L121:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L122:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L123:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L124:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L125:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L132:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L133:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L134:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L135:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L136:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L137:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L138:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L139:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L140:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L141:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L142:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L143:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L144:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L145:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L146:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L147:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L148:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L155:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L162:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L163:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L164:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L165:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L166:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L167:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L168:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L169:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L170:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L171:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L172:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L173:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L174:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L175:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L176:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L177:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L178:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L179:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L180:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L181:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L182:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L183:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L184:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L185:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L192:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L193:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L194:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L195:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L202:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L203:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L204:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L205:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L206:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L207:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L214:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L215:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L222:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L223:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L230:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L237:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L238:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L239:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L240:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L241:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L242:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L243:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L244:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L251:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L258:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L271:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L272:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L279:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L286:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L293:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L294:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L295:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L296:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L297:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L298:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L299:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L300:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L301:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L302:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L303:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L304:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L305:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L306:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L307:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L308:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L309:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L310:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L311:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L312:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L313:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L314:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L315:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L316:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L317:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L318:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L319:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L320:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L321:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L322:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L323:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L324:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L325:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L326:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L327:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L328:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L329:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L330:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L337:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L338:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L345:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L346:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L347:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L348:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L349:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L350:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L351:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L352:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L353:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L354:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L355:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L356:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L357:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L358:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L359:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L360:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L361:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L362:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L363:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L364:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L365:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L366:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L367:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L368:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L369:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L370:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L371:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L378:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L379:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L380:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L381:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L382:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L383:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L396:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L397:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L398:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L411:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L418:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L419:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L420:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L427:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L428:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L429:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L430:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L431:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L432:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L433:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L440:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L447:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L454:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L461:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L462:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L469:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L470:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L471:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L472:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L473:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L480:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L481:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L482:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L483:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L484:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L485:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L486:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L487:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L494:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L495:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L496:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L503:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L504:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L505:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L512:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L513:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L514:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L521:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L528:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L529:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L536:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L543:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L544:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L545:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L552:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L559:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L560:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L561:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L562:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L563:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L564:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L565:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L566:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L573:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L586:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L587:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L588:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L595:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L596:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L597:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L604:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L605:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L612:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L619:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L620:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/generated_enums_strings.go#L627:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L44:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L45:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L46:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L47:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L48:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L49:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L50:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L51:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L52:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L53:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L54:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L55:2: duplicate key unknown in map literal
/home/runner/go/pkg/mod/gorgonia.org/cu@v0.9.4/dnn/status.go#L56:2: duplicate key unknown in map literal
https://github.com/gorgonia/gorgonia/blob/master/cuda/engine.go#L3:8: could not import C (no metadata for C)
https://github.com/gorgonia/gorgonia/blob/master/cuda/engine.go#L3:8: could not import C (no metadata for C)
testifylint: 422 errors during loading

Report issue: https://github.com/gorgonia/gorgonia/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682612663

Copy link

Run testifylint on Repo: https://github.com/dgraph-io/ristretto got output

https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L86:3: compares: use require.LessOrEqual
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L309:2: empty: use require.NotEmpty
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L345:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L495:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L704:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L710:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L713:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L731:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L742:2: empty: use require.NotEmpty
https://github.com/dgraph-io/ristretto/blob/main/cache_test.go#L745:2: empty: use require.Empty
https://github.com/dgraph-io/ristretto/blob/main/policy_test.go#L190:2: empty: use require.Empty
https://github.com/dgraph-io/ristretto/blob/main/policy_test.go#L212:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/policy_test.go#L219:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/ring_test.go#L69:2: compares: use require.LessOrEqual
https://github.com/dgraph-io/ristretto/blob/main/sketch_test.go#L28:3: compares: use require.NotEqual
https://github.com/dgraph-io/ristretto/blob/main/stress_test.go#L50:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L35:3: empty: use require.Empty
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L36:3: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L37:3: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L38:3: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L55:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L59:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L117:2: compares: use require.Equal
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L121:2: compares: use require.Equal
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L125:2: compares: use require.Equal
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L145:5: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L162:2: len: use require.Len
https://github.com/dgraph-io/ristretto/blob/main/z/btree_test.go#L260:2: compares: use require.Equal
https://github.com/dgraph-io/ristretto/blob/main/z/buffer_test.go#L113:3: compares: use require.GreaterOrEqual
https://github.com/dgraph-io/ristretto/blob/main/z/flags_test.go#L28:2: bool-compare: use require.True
https://github.com/dgraph-io/ristretto/blob/main/z/flags_test.go#L41:2: bool-compare: use require.True
https://github.com/dgraph-io/ristretto/blob/main/z/histogram_test.go#L32:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/z/histogram_test.go#L56:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/z/histogram_test.go#L79:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/dgraph-io/ristretto/blob/main/z/allocator_test.go#L145:5: go-require: require must only be used in the goroutine running the test function

Report issue: https://github.com/dgraph-io/ristretto/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682617400

Copy link

Run testifylint on Repo: https://github.com/cortexproject/cortex got output

https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertmanager_http_test.go#L48:3: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertmanager_test.go#L192:2: compares: use require.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/api_test.go#L700:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/api_test.go#L708:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/api_test.go#L718:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/api_test.go#L727:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/distributor_test.go#L295:6: compares: use require.LessOrEqual
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L190:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L644:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L729:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L730:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1083:4: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1100:4: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1328:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1329:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1483:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1771:4: empty: use require.NotEmpty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1813:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1814:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1815:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1829:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1830:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1845:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L1993:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2002:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2014:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2015:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2016:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2029:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2030:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2031:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L2160:2: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/rate_limited_notifier_test.go#L56:4: error-nil: use assert.Error
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/state_persister_test.go#L109:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/state_persister_test.go#L155:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/state_persister_test.go#L117:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/multitenant_test.go#L511:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertstore/store_test.go#L230:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertstore/store_test.go#L241:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertstore/store_test.go#L270:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/alertmanager/alertstore/store_test.go#L287:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/api/api_test.go#L180:5: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/api/api_test.go#L175:5: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/api/handlers_test.go#L165:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/api/handlers_test.go#L194:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L57:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L58:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L59:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L60:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L61:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L62:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L63:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L64:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L65:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L66:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L75:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L76:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L77:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L78:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L79:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L80:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L81:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L82:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L83:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L84:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L99:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L100:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L101:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L102:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L103:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L104:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L105:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L106:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L107:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L108:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L121:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L122:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L123:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L124:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L125:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L126:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L127:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L128:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L129:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L130:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L151:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L152:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L153:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L154:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L155:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L156:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L157:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L158:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L159:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L160:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L203:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L204:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L205:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L206:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L207:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L208:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L209:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L210:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L211:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L212:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L219:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L220:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L221:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L222:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L223:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L224:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L225:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L226:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L227:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L228:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/fifo_cache_test.go#L275:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_cache_test.go#L16:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_cache_test.go#L37:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_cache_test.go#L46:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_client_test.go#L15:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_client_test.go#L19:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_client_test.go#L46:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_client_test.go#L50:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/redis_client_test.go#L58:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/cache_test.go#L51:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/cache_test.go#L64:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/chunk/cache/memcached_client_selector_test.go#L65:2: error-is-as: invalid usage of require.Error, use require.ErrorIs instead
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L101:2: negative-positive: use require.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L110:2: negative-positive: use require.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L232:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L233:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L234:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L235:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L236:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L355:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L356:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L357:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L358:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L359:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L414:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L415:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L416:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L417:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L418:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/compactor_test.go#L214:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/compactor_test.go#L663:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/compactor_test.go#L1907:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/compactor_test.go#L1922:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/shuffle_sharding_planner_test.go#L389:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/compactor_test.go#L62:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L601:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L642:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/compactor/blocks_cleaner_test.go#L680:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L123:3: compares: use assert.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L142:3: compares: use assert.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L397:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L156:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L175:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L198:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L274:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/api/api_test.go#L219:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/client/configs_test.go#L39:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/configs/client/configs_test.go#L34:3: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/configs/db/db_test.go#L59:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/configs/db/db_test.go#L54:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/db/db_test.go#L57:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/configs/userconfig/config_test.go#L46:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/configs/userconfig/config_test.go#L67:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/cortex/cortex_test.go#L259:2: bool-compare: use require.True
https://github.com/cortexproject/cortex/blob/master/pkg/cortex/modules_test.go#L209:3: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/cortex/runtime_config_test.go#L44:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/cortexpb/timeseries_test.go#L46:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/cortexpb/timeseries_test.go#L65:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/cortexpb/timeseries_test.go#L66:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/cortexpb/extensions_test.go#L79:6: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/cortexpb/extensions_test.go#L81:6: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L666:7: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L932:7: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1190:4: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1247:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1269:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1309:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1329:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1370:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1389:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1405:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1447:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1466:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1482:3: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1574:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1724:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1786:6: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1849:5: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L2562:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L2618:4: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L3552:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L3671:6: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L3805:3: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/ingestion_rate_strategy_test.go#L82:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/ingestion_rate_strategy_test.go#L83:4: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1022:6: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1024:6: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/distributor/distributor_test.go#L1201:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L53:4: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L106:4: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L195:4: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L217:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L219:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L226:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L229:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L152:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L154:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L161:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/frontend_test.go#L165:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L214:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L230:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L246:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L262:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L278:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L294:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L310:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L326:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L342:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L358:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L374:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L390:4: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/transport/handler_test.go#L399:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v1/queue_test.go#L74:3: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v1/frontend_test.go#L46:3: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v1/frontend_test.go#L83:3: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v1/frontend_test.go#L190:3: go-require: do not use require in http handlers
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v2/frontend_test.go#L204:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v2/frontend_test.go#L205:3: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v2/frontend_test.go#L206:3: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v2/frontend_test.go#L207:3: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/frontend/v2/frontend_test.go#L245:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L247:2: negative-positive: use assert.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L317:2: negative-positive: use assert.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L349:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L355:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L363:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L370:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L537:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L540:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L543:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L548:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L557:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L561:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L570:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L400:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L405:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L411:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L183:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L187:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L194:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L708:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L725:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L157:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L223:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L225:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L229:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L231:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L235:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L237:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L275:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L277:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L281:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L283:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L288:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L292:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L294:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L301:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L305:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ha/ha_tracker_test.go#L307:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L1671:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L2429:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3002:3: negative-positive: use require.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3010:5: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3255:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3264:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3275:5: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3291:5: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3312:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3334:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3558:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3569:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L3932:5: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4413:3: compares: use require.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4414:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4441:2: compares: use require.LessOrEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4442:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4516:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4519:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4528:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4540:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4544:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4556:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4568:2: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4572:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4940:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4949:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/instance_limits_test.go#L25:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/limiter_test.go#L507:4: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L2882:5: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L2972:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/limiter_test.go#L593:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/limiter_test.go#L596:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/limiter_test.go#L599:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/limiter_test.go#L602:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L4821:8: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/user_state_test.go#L86:6: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/ingester_test.go#L1444:6: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/client/client_test.go#L50:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/client/cortex_util_test.go#L139:4: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/client/cortex_util_test.go#L134:5: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/client/client_test.go#L87:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ingester/client/client_test.go#L89:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_consistency_checker_test.go#L115:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_consistency_checker_test.go#L118:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_consistency_checker_test.go#L120:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L43:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L52:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L217:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L229:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L250:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L262:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L282:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L294:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L314:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L326:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L343:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L355:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L371:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L383:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L393:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L845:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L852:4: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L1363:6: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L1380:6: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L1464:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_replicated_set_test.go#L747:4: compares: use require.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/querier/distributor_queryable_test.go#L117:6: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L748:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L751:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L761:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L847:5: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L850:5: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L987:6: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L990:6: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1000:7: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1041:7: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1066:7: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1096:7: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1121:7: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1217:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/querier_test.go#L1222:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/store_gateway_client_test.go#L34:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/querier/store_gateway_client_test.go#L52:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L844:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_finder_bucket_scan_test.go#L59:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/blocks_store_queryable_test.go#L1368:7: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/batch/batch_test.go#L144:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/batch/chunk_test.go#L64:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/batch/chunk_test.go#L76:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/querier/batch/chunk_test.go#L90:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/batch/chunk_test.go#L110:5: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tenantfederation/merge_queryable_test.go#L626:7: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tenantfederation/merge_queryable_test.go#L633:8: formatter: remove unnecessary fmt.Sprintf
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tenantfederation/merge_queryable_test.go#L965:7: formatter: remove unnecessary fmt.Sprintf
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/instantquery/instant_query_test.go#L429:4: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/instantquery/limits_test.go#L87:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/instantquery/instant_query_test.go#L494:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/limits_test.go#L98:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/limits_test.go#L214:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/results_cache_test.go#L746:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/results_cache_test.go#L1147:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/results_cache_test.go#L1151:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/test_utils_test.go#L79:3: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/value_test.go#L166:5: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/querier/tripperware/queryrange/value_test.go#L168:5: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/querier/worker/frontend_processor_test.go#L44:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L127:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L128:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L137:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L138:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L177:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L178:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L185:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L186:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L213:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L214:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L221:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L222:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/lifecycler_test.go#L649:3: bool-compare: use require.True
https://github.com/cortexproject/cortex/blob/master/pkg/ring/lifecycler_test.go#L663:3: bool-compare: use require.True
https://github.com/cortexproject/cortex/blob/master/pkg/ring/replication_strategy_test.go#L96:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/replication_strategy_test.go#L158:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L463:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L546:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L693:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L710:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2689:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2927:3: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2955:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2961:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2968:2: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L2973:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L91:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L98:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L106:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L111:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L117:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/token_generator_test.go#L122:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/util_test.go#L400:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/ring/util_test.go#L411:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/util_test.go#L417:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L859:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/replication_set_test.go#L249:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L545:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L550:6: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L692:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/ring_test.go#L709:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/basic_lifecycler_test.go#L346:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/replication_strategy_test.go#L157:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/replication_strategy_test.go#L95:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/model_test.go#L570:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/model_test.go#L572:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/kv_test.go#L135:5: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/multi_test.go#L28:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/codec/codec_test.go#L43:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/consul/client_test.go#L162:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/consul/client_test.go#L166:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/dynamodb/client_test.go#L45:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/dynamodb/client_test.go#L285:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/dynamodb/dynamodb_test.go#L72:4: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L386:3: compares: use require.GreaterOrEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L488:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L519:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1128:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1132:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1136:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1155:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1167:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1168:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1190:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1220:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1274:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ring/kv/memberlist/memberlist_client_test.go#L1276:5: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/api_test.go#L44:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/api_test.go#L100:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/api_test.go#L154:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/api_test.go#L209:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/manager_test.go#L88:2: compares: use require.NotEqual
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/manager_test.go#L273:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/manager_test.go#L274:2: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/mapper_test.go#L379:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/notifier_test.go#L265:5: error-is-as: invalid usage of require.Error, use require.ErrorIs instead
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rule_backup_manager_test.go#L105:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rule_backup_manager_test.go#L112:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rule_backup_manager_test.go#L127:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rule_backup_manager_test.go#L131:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rule_backup_manager_test.go#L143:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L267:3: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L328:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L329:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L904:5: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L922:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1094:4: useless-assert: asserting of the same variable
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1110:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1130:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1132:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1679:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1680:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1681:5: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1779:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1790:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1805:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1814:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1824:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1833:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1866:3: empty: use require.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L1868:3: empty: use require.NotEmpty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L2064:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/ruler_test.go#L2082:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/client_pool_test.go#L31:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/client_pool_test.go#L49:3: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/bucketclient/bucket_client_test.go#L125:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/bucketclient/bucket_client_test.go#L131:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/bucketclient/bucket_client_test.go#L434:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/bucketclient/bucket_client_test.go#L435:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/configdb/store_test.go#L59:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/configdb/store_test.go#L86:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/configdb/store_test.go#L113:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/ruler/rulestore/local/local_test.go#L80:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L259:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L284:2: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L334:3: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L348:2: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L458:2: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/scheduler_test.go#L467:2: compares: use require.Equal
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L101:3: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L137:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L373:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L374:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L400:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L401:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L402:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L421:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L422:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L423:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L437:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L438:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L439:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L577:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L581:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L604:3: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L609:4: compares: use require.Less
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/queue_test.go#L244:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L152:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L201:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L226:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L250:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L263:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L275:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L20:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L45:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L56:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L62:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L66:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L35:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L44:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/queue_test.go#L342:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/queue_test.go#L287:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L471:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L293:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L317:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L334:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_queues_test.go#L347:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L83:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L92:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L100:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L110:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L119:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/scheduler/queue/user_request_queue_test.go#L130:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/bucket_util_test.go#L27:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/client_test.go#L97:5: nil-compare: use assert.Nil
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/client_test.go#L154:4: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/client_test.go#L156:4: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/client_test.go#L157:4: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/client_test.go#L159:4: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/s3/config_test.go#L216:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storage/bucket/s3/config_test.go#L223:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/loader_test.go#L493:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/markers_bucket_client_test.go#L203:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/storage_test.go#L53:2: error-is-as: use require.ErrorIs
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/storage_test.go#L102:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/updater_test.go#L214:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/updater_test.go#L245:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/updater_test.go#L298:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/updater_test.go#L299:3: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/loader_test.go#L480:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/markers_bucket_client_test.go#L228:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storage/tsdb/bucketindex/loader_test.go#L591:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L114:2: error-is-as: use require.ErrorIs
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L275:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L299:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L357:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L135:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L136:5: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L142:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L143:5: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L169:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L170:4: error-nil: use require.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L440:4: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L515:4: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L559:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L163:5: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L175:4: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L383:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L384:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L388:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L389:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L391:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L392:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L396:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L490:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L491:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L493:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L494:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L833:4: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L853:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/metadata_fetcher_filters_test.go#L110:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/sharding_strategy_test.go#L297:5: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/sharding_strategy_test.go#L682:6: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L537:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L438:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/gateway_test.go#L229:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L292:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L231:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_stores_test.go#L362:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L301:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/storegateway/bucket_index_metadata_fetcher_test.go#L333:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/tenant/tenant_test.go#L36:5: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/tenant/resolver_test.go#L36:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/tenant/resolver_test.go#L44:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/active_user_test.go#L63:3: compares: use require.Greater
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L22:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L23:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L24:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L25:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L26:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L31:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L38:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L39:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L40:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L41:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L42:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L47:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L54:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L55:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L56:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/metrics_helper_test.go#L57:2: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/strings_test.go#L112:5: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/http_test.go#L185:4: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/http_test.go#L192:5: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/http_test.go#L198:5: error-nil: use assert.Error
https://github.com/cortexproject/cortex/blob/master/pkg/util/http_test.go#L201:4: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/flagext/stringslicecsv_test.go#L17:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/flagext/stringslicecsv_test.go#L26:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/flagext/stringslicecsv_test.go#L32:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/flagext/cidr_test.go#L38:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/flagext/cidr_test.go#L47:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/grpcclient/ratelimit_test.go#L31:3: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/grpcclient/ratelimit_test.go#L32:3: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/grpcutil/grpc_interceptors_test.go#L29:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/grpcutil/grpc_interceptors_test.go#L55:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/grpcutil/grpc_interceptors_test.go#L76:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L19:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L22:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L25:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L28:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L31:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L48:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L49:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L50:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L51:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L53:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L54:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L55:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L58:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L59:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L60:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L61:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L63:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L64:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/rate_limiter_test.go#L65:2: bool-compare: use assert.True
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/query_limiter_test.go#L32:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/query_limiter_test.go#L34:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/limiter/query_limiter_test.go#L39:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/log/log_test.go#L63:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/log/log_test.go#L64:2: len: use require.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/middleware/grpc_test.go#L15:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/middleware/grpc_test.go#L21:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/middleware/grpc_test.go#L27:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/middleware/grpc_test.go#L33:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/middleware/grpc_test.go#L39:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L46:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L50:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L54:2: error-is-as: invalid usage of assert.Error, use assert.ErrorIs instead
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L64:2: error-nil: use assert.NoError
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L65:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L69:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L74:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L137:2: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L54:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L59:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L68:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L73:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/modules/modules_test.go#L120:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/net/firewall_dialer_test.go#L91:7: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/services/failure_watch_test.go#L33:2: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/util/services/manager_test.go#L177:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L110:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L111:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L147:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L148:2: bool-compare: use assert.False
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L158:2: len: use assert.Len
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L109:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L119:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L127:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L145:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L156:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L166:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L175:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/tls_test.go#L184:2: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/test/tls_integration_test.go#L107:3: go-require: require must only be used in the goroutine running the test function
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/test/tls_integration_test.go#L135:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/test/tls_integration_test.go#L150:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/tls/test/tls_integration_test.go#L168:4: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/exporter_test.go#L29:2: negative-positive: use assert.Positive
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L128:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L143:2: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L191:2: expected-actual: need to reverse actual and expected values
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L325:3: float-compare: use assert.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L420:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/limits_test.go#L562:4: float-compare: use require.InEpsilon (or InDelta)
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/notifications_limit_flag_test.go#L45:5: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/notifications_limit_flag_test.go#L90:2: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/notifications_limit_flag_test.go#L105:2: error-nil: use require.Error
https://github.com/cortexproject/cortex/blob/master/pkg/util/validation/notifications_limit_flag_test.go#L48:5: require-error: for error assertions use require
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L55:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L68:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L69:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L70:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L94:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L95:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L98:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L99:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L102:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L103:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L128:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L132:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L133:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L136:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L138:5: empty: use assert.Empty
https://github.com/cortexproject/cortex/blob/master/tools/thanosconvert/thanosconvert_test.go#L163:5: empty: use assert.Empty

Report issue: https://github.com/cortexproject/cortex/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682603941

Copy link

Run testifylint on Repo: https://github.com/anacrolix/torrent got output

https://github.com/anacrolix/torrent/blob/master/test/leecher-storage.go#L238:2: compares: use assert.LessOrEqual
https://github.com/anacrolix/torrent/blob/master/test/leecher-storage.go#L239:2: compares: use assert.LessOrEqual
https://github.com/anacrolix/torrent/blob/master/test/leecher-storage.go#L242:2: compares: use assert.LessOrEqual
https://github.com/anacrolix/torrent/blob/master/test/leecher-storage.go#L243:2: compares: use assert.LessOrEqual
https://github.com/anacrolix/torrent/blob/master/test/leecher-storage.go#L252:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/client_test.go#L169:2: empty: use assert.Empty
https://github.com/anacrolix/torrent/blob/master/client_test.go#L224:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L232:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L248:2: error-nil: use assert.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L253:2: error-nil: use assert.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L268:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L276:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L292:2: error-nil: use assert.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L297:2: error-nil: use assert.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L309:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L317:2: error-nil: use require.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L333:2: error-nil: use assert.NoError
https://github.com/anacrolix/torrent/blob/master/client_test.go#L391:2: empty: use assert.Empty
https://github.com/anacrolix/torrent/blob/master/misc_test.go#L18:3: expected-actual: need to reverse actual and expected values
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L303:2: len: use require.Len
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L304:2: len: use require.Len
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L305:2: empty: use require.Empty
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L306:2: empty: use require.Empty
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L307:2: empty: use require.Empty
https://github.com/anacrolix/torrent/blob/master/pex_test.go#L308:2: empty: use require.Empty
https://github.com/anacrolix/torrent/blob/master/pexconn_test.go#L47:2: expected-actual: need to reverse actual and expected values
https://github.com/anacrolix/torrent/blob/master/network_test.go#L47:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/peerconn_test.go#L169:5: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/peerconn_test.go#L170:5: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/torrent_test.go#L216:4: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/client_test.go#L139:3: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/utp_test.go#L12:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/client_test.go#L339:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/client_test.go#L587:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/bencode/decode_test.go#L177:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/bencode/encode_test.go#L88:3: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/bencode/decode_test.go#L150:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/fs/torrentfs_test.go#L134:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/fs/torrentfs_test.go#L218:3: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/metainfo/info_test.go#L14:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/metainfo/magnet_test.go#L50:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/metainfo/metainfo_test.go#L109:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/metainfo/metainfo_test.go#L73:3: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/metainfo/nodes_test.go#L47:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/mse/mse_test.go#L67:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/mse/mse_test.go#L81:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/mse/mse_test.go#L183:4: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/mse/mse_test.go#L184:4: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/peer_protocol/pex_test.go#L19:2: len: use require.Len
https://github.com/anacrolix/torrent/blob/master/peer_protocol/pex_test.go#L47:2: expected-actual: need to reverse actual and expected values
https://github.com/anacrolix/torrent/blob/master/storage/file-misc_test.go#L96:2: empty: use assert.Empty
https://github.com/anacrolix/torrent/blob/master/storage/file_test.go#L28:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/storage/issue95_test.go#L29:2: require-error: for error assertions use require
https://github.com/anacrolix/torrent/blob/master/test/transfer_test.go#L74:2: compares: use require.Greater
https://github.com/anacrolix/torrent/blob/master/tracker/udp_test.go#L66:2: len: use assert.Len
https://github.com/anacrolix/torrent/blob/master/tracker/udp_test.go#L49:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/tracker/udp_test.go#L58:3: go-require: require must only be used in the goroutine running the test function
https://github.com/anacrolix/torrent/blob/master/tracker/http/http_test.go#L44:2: empty: use require.Empty

Report issue: https://github.com/anacrolix/torrent/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682611725

Copy link

Run testifylint on Repo: https://github.com/cri-o/cri-o got output

-: # github.com/seccomp/libseccomp-golang
# [pkg-config --cflags  -- libseccomp]
Package libseccomp was not found in the pkg-config search path.
Perhaps you should add the directory containing `libseccomp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libseccomp' found
https://github.com/cri-o/cri-o/blob/main/vendor/github.com/seccomp/libseccomp-golang/seccomp.go#L22:8: could not import C (no metadata for C)
-: # github.com/containers/storage/drivers/btrfs
vendor/github.com/containers/storage/drivers/btrfs/btrfs.go#L12:10: fatal error: btrfs/ioctl.h: No such file or directory
12 | #include <btrfs/ioctl.h>
|          ^~~~~~~~~~~~~~~
compilation terminated.
https://github.com/cri-o/cri-o/blob/main/vendor/github.com/containers/storage/drivers/btrfs/btrfs.go#L19:8: could not import C (no metadata for C)
-: # github.com/proglottis/gpgme
# [pkg-config --cflags  -- gpgme]
Package gpgme was not found in the pkg-config search path.
Perhaps you should add the directory containing `gpgme.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gpgme' found
https://github.com/cri-o/cri-o/blob/main/vendor/github.com/proglottis/gpgme/data.go#L7:8: could not import C (no metadata for C)
https://github.com/cri-o/cri-o/blob/main/internal/config/nsmgr/test/utils.go#L78:16: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
-: # github.com/cri-o/cri-o/internal/config/conmonmgr [github.com/cri-o/cri-o/internal/config/conmonmgr.test]
internal/config/conmonmgr/conmonmgr_test.go#L21:14: undefined: cmdrunner.SetMocked
internal/config/conmonmgr/conmonmgr_test.go#L178:14: undefined: cmdrunner.SetMocked
https://github.com/cri-o/cri-o/blob/main/internal/config/conmonmgr/conmonmgr_test.go#L21:14: undefined: cmdrunner.SetMocked
https://github.com/cri-o/cri-o/blob/main/internal/config/conmonmgr/conmonmgr_test.go#L178:14: undefined: cmdrunner.SetMocked
-: # github.com/cri-o/cri-o/internal/config/ociartifact_test [github.com/cri-o/cri-o/internal/config/ociartifact.test]
internal/config/ociartifact/ociartifact_test.go#L67:8: sut.SetImpl undefined (type *ociartifact.OCIArtifact has no field or method SetImpl)
https://github.com/cri-o/cri-o/blob/main/internal/config/ociartifact/ociartifact_test.go#L67:8: sut.SetImpl undefined (type *ociartifact.OCIArtifact has no field or method SetImpl)
-: # github.com/cri-o/cri-o/internal/config/seccomp/seccompociartifact_test [github.com/cri-o/cri-o/internal/config/seccomp/seccompociartifact.test]
internal/config/seccomp/seccompociartifact/seccompociartifact_test.go#L40:8: sut.SetImpl undefined (type *seccompociartifact.SeccompOCIArtifact has no field or method SetImpl)
https://github.com/cri-o/cri-o/blob/main/internal/config/seccomp/seccompociartifact/seccompociartifact_test.go#L40:8: sut.SetImpl undefined (type *seccompociartifact.SeccompOCIArtifact has no field or method SetImpl)
https://github.com/cri-o/cri-o/blob/main/internal/factory/container/namespaces_test.go#L196:7: cfg.SetNamespaceManager undefined (type *"github.com/cri-o/cri-o/pkg/config".Config has no field or method SetNamespaceManager)
https://github.com/cri-o/cri-o/blob/main/internal/lib/checkpoint_test.go#L67:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/checkpoint_test.go#L99:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/checkpoint_test.go#L162:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/checkpoint_test.go#L191:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/restore_test.go#L62:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/restore_test.go#L117:16: myContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/lib/restore_test.go#L164:16: myContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/internal/lib/restore_test.go#L246:16: myContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/internal/lib/restore_test.go#L353:16: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L435:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L446:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L458:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L471:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L487:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L500:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L513:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L530:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L544:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L568:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L585:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L598:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L614:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/container_test.go#L631:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/memory_store_test.go#L149:15: container.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L34:21: undefined: oci.RuntimeOCI
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L47:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L50:14: undefined: cmdrunner.SetMocked
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L57:18: undefined: oci.NewRuntimeOCI
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L79:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/internal/oci/runtime_oci_test.go#L86:8: sut.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_test.go#L72:13: container.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/inspect_test.go#L194:13: container.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_checkpoint_test.go#L24:16: serverConfig.SetCheckpointRestore undefined (type *"github.com/cri-o/cri-o/pkg/config".Config has no field or method SetCheckpointRestore)
https://github.com/cri-o/cri-o/blob/main/server/container_checkpoint_test.go#L41:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_checkpoint_test.go#L80:16: serverConfig.SetCheckpointRestore undefined (type *"github.com/cri-o/cri-o/pkg/config".Config has no field or method SetCheckpointRestore)
https://github.com/cri-o/cri-o/blob/main/server/container_list_test.go#L34:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_remove_test.go#L29:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_restore_test.go#L35:16: serverConfig.SetCheckpointRestore undefined (type *"github.com/cri-o/cri-o/pkg/config".Config has no field or method SetCheckpointRestore)
https://github.com/cri-o/cri-o/blob/main/server/container_restore_test.go#L292:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_restore_test.go#L340:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_restore_test.go#L391:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_restore_test.go#L455:19: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_stats_test.go#L63:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_status_test.go#L34:18: serverConfig.SetCheckpointRestore undefined (type *"github.com/cri-o/cri-o/pkg/config".Config has no field or method SetCheckpointRestore)
https://github.com/cri-o/cri-o/blob/main/server/container_status_test.go#L39:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_status_test.go#L106:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/container_stop_test.go#L28:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_update_resources_test.go#L31:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_update_resources_test.go#L54:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/container_update_resources_test.go#L137:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L51:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L70:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L91:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L161:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L181:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L225:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/inspect_ginkgo_test.go#L245:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/sandbox_list_test.go#L28:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/sandbox_status_test.go#L27:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/sandbox_status_test.go#L43:18: testContainer.SetState undefined (type *oci.Container has no field or method SetState)
https://github.com/cri-o/cri-o/blob/main/server/sandbox_status_test.go#L78:18: testContainer.SetStateAndSpoofPid undefined (type *oci.Container has no field or method SetStateAndSpoofPid)
https://github.com/cri-o/cri-o/blob/main/server/suite_test.go#L174:20: testStreamService.SetRuntimeServer undefined (type server.StreamService has no field or method SetRuntimeServer)
https://github.com/cri-o/cri-o/blob/main/server/suite_test.go#L194:6: sut.SetStorageImageServer undefined (type *server.Server has no field or method SetStorageImageServer)
https://github.com/cri-o/cri-o/blob/main/server/suite_test.go#L195:6: sut.SetStorageRuntimeServer undefined (type *server.Server has no field or method SetStorageRuntimeServer)
https://github.com/cri-o/cri-o/blob/main/server/suite_test.go#L198:13: sut.SetCNIPlugin undefined (type *server.Server has no field or method SetCNIPlugin)
testifylint: 80 errors during loading

Report issue: https://github.com/cri-o/cri-o/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682614571

Copy link

Run testifylint on Repo: https://github.com/kyverno/kyverno got output

https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L51:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L53:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L65:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L67:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L35:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/command_test.go#L37:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L395:3: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L396:3: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L397:3: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L398:3: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L399:3: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L420:3: empty: use assert.NotEmpty
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L406:4: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L417:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L463:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L465:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L514:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L516:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L26:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L477:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/apply/command_test.go#L479:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L39:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L41:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L71:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L73:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L107:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L109:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L121:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L123:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L135:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/exception/command_test.go#L137:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/metrics-config/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/test/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/user-info/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/create/values/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L49:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L51:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L63:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L65:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L35:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/docs/command_test.go#L37:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L33:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L35:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L47:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L49:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L61:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/policy/command_test.go#L63:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L47:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L49:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L61:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L63:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L33:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/fix/test/command_test.go#L35:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/function/command_test.go#L56:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/function/command_test.go#L58:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/function/command_test.go#L42:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/function/command_test.go#L44:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L40:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L42:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L54:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L56:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L26:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/parse/command_test.go#L28:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L26:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L28:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L40:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L42:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L54:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/jp/query/command_test.go#L56:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/scan/command_test.go#L47:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/scan/command_test.go#L49:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/scan/command_test.go#L61:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/json/scan/command_test.go#L63:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L64:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/command_test.go#L36:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L46:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L60:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L74:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/pull/command_test.go#L76:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L46:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L60:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L74:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/oci/push/command_test.go#L76:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L18:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L20:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L32:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L34:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L46:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/test/command_test.go#L48:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L65:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L67:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L20:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L22:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L37:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L39:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L51:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/commands/version/command_test.go#L53:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/output/table/table_test.go#L43:4: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/output/table/table_test.go#L81:4: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/policy/load_test.go#L70:5: error-nil: use assert.Error
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/policy/load_test.go#L74:6: len: use assert.Len
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/policy/variables_test.go#L16:3: len: use assert.Len
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/policy/variables_test.go#L15:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/variables/variables_test.go#L103:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/cmd/cli/kubectl-kyverno/variables/variables_test.go#L62:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L96:2: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L100:2: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L104:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L108:2: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L112:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L116:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L188:4: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L189:4: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/ext/wildcard/utils_test.go#L190:4: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/ext/yaml/split_test.go#L91:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/auth/auth_test.go#L124:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/auth/auth_test.go#L181:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/auth/auth_test.go#L79:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L41:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L51:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L61:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L68:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L69:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L113:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L114:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L121:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L122:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L126:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L130:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L131:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L141:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L143:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L148:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L149:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L153:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L155:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L160:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L161:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L167:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L171:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L175:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L193:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L194:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L40:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L50:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L60:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L112:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L125:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L140:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L152:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L190:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L197:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/clients/dclient/discovery_test.go#L200:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L131:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L274:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L363:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L438:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L521:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutation_test.go#L1354:2: len: use require.Len
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L72:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L78:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L79:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L82:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L83:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L86:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L87:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L59:2: expected-actual: need to reverse actual and expected values
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L103:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L125:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L128:2: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L134:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L137:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/utils_test.go#L143:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/context_test.go#L223:6: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L15:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L19:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/context/evaluate_test.go#L23:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/handlers/mutation/load_targets_test.go#L215:3: formatter: remove unnecessary fmt.Sprintf
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L180:4: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L183:4: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L186:4: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L189:4: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L356:3: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L359:3: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L362:3: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L365:3: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchJSON6902_test.go#L368:4: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchesUtils_test.go#L25:3: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchesUtils_test.go#L13:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchesUtils_test.go#L23:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchesUtils_test.go#L138:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/mutate/patch/patchesUtils_test.go#L140:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L31:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L45:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L48:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L64:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L70:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L80:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/policycontext/policy_context_test.go#L86:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L447:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L448:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L491:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L492:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L498:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L499:2: bool-compare: use assert.True
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L507:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L508:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L515:2: error-nil: use assert.NoError
https://github.com/kyverno/kyverno/blob/main/pkg/engine/variables/evaluate_test.go#L516:2: bool-compare: use assert.False
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L180:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L183:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L194:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L198:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L205:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L207:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L263:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L141:2: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/image/infos_test.go#L144:3: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/json/patch_test.go#L67:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/json/patch_test.go#L106:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/json/patch_test.go#L140:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/json/patch_test.go#L205:5: require-error: for error assertions use require
https://github.com/kyverno/kyverno/blob/main/pkg/utils/yaml/loadpolicy_test.go#L496:5: require-error: for error assertions use require

Report issue: https://github.com/kyverno/kyverno/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682608779

Copy link

Run testifylint on Repo: https://github.com/eksctl-io/eksctl got output

https://github.com/eksctl-io/eksctl/blob/main/pkg/cfn/builder/managed_nodegroup_test.go#L126:4: error-nil: use require.NoError

Report issue: https://github.com/eksctl-io/eksctl/issues
Github actions: https://github.com/alingse/go-linter-runner/actions/runs/9682618583

@alingse alingse closed this as completed Nov 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant