diff --git a/package_test.go b/package_test.go index 1422eda..c0ea7a8 100644 --- a/package_test.go +++ b/package_test.go @@ -6,7 +6,7 @@ import ( ) func TestImports(t *testing.T) { - if assert.Equal(t, 1, 1) != true { + if !assert.Equal(t, 1, 1) { t.Error("Something is wrong.") } }