mirror of
https://github.com/stretchr/testify.git
synced 2025-04-05 00:19:47 +00:00
* Removed redundant `dep` files as we now use Go moduels * Correct import order for package_test.go
14 lines
186 B
Go
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.")
|
|
}
|
|
}
|