spf13--cobra/cobra/helpers_test.go

10 lines
107 B
Go
Raw Normal View History

2019-03-19 01:32:43 +01:00
package main
import "testing"
func assertNoErr(t *testing.T, e error) {
if e != nil {
t.Error(e)
}
}