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