1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-05-01 19:07:19 +00:00
spf13--cobra/cobra/cmd/helpers_test.go
Unai Martinez-Corral 652c755d37
Use golangci-lint ()
Use golangci-lint. Repair warnings and errors resulting from linting.
2021-02-07 17:08:50 -07:00

9 lines
106 B
Go

package cmd
import "testing"
func assertNoErr(t *testing.T, e error) {
if e != nil {
t.Error(e)
}
}