diff --git a/testing/testing.go b/testing/testing.go index 196db75..2662f4c 100644 --- a/testing/testing.go +++ b/testing/testing.go @@ -31,7 +31,7 @@ func AssertTrue(t *testing.T, expected bool) { func AssertFalse(t *testing.T, expected bool) { t.Helper() - if expected { + if !expected { t.Logf("✅ [%T](%+v) != [%T](%+v)", expected, expected, false, false) return }