1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-05-16 02:07:20 +00:00
spf13--cobra/cobra/cmd/helpers_test.go

10 lines
106 B
Go
Raw Normal View History

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