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)
}
}