Files
timmy-config/go/pkg/mod/github.com/stretchr/testify@v1.10.0/package_test.go
2026-03-31 20:02:01 +00:00

14 lines
186 B
Go

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