Sign in
chromium
/
external
/
github.com
/
stretchr
/
testify
/
refs/heads/codegen-remove-pkg-imports
/
.
/
package_test.go
blob: f17ff153e1406c90a880e0fc6290b27f87ee2028 [
file
] [
log
] [
blame
] [
edit
]
package testify
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}