mirror of
https://github.com/spf13/cobra
synced 2025-04-27 00:57:23 +00:00
9 lines
106 B
Go
9 lines
106 B
Go
package cmd
|
|
|
|
import "testing"
|
|
|
|
func assertNoErr(t *testing.T, e error) {
|
|
if e != nil {
|
|
t.Error(e)
|
|
}
|
|
}
|