I want to look at my juicy error formatting even when it passes

This commit is contained in:
Sasha Koshka 2024-02-06 22:33:18 -05:00
parent 62c96ed761
commit 0133e87831
1 changed files with 1 additions and 1 deletions

View File

@ -6,9 +6,9 @@ import "git.tebibyte.media/sashakoshka/fspl/testcommon"
func testString (test *testing.T, correct string, got string) {
if got != correct {
test.Logf("results do not match")
testcommon.Compare(test, correct, got)
test.Fail()
}
testcommon.Compare(test, correct, got)
}
func testError (test *testing.T, correct string, err *Error) {