From 1e559aded50c4d4cb92d96ebd5cf350d92814342 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 27 Sep 2024 15:14:05 -0300 Subject: s/AssertEqual/TAssertEqual/g --- src/gobang.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gobang.go') diff --git a/src/gobang.go b/src/gobang.go index e46b468..8bff74e 100644 --- a/src/gobang.go +++ b/src/gobang.go @@ -326,7 +326,7 @@ func Testing(message string, body func()) { } } -func AssertEqual(given any, expected any) { +func TAssertEqual(given any, expected any) { if !reflect.DeepEqual(given, expected) { if showColour() { fmt.Fprintf(os.Stderr, "\033[0;31mERR\033[0m.\n") @@ -340,7 +340,7 @@ func AssertEqual(given any, expected any) { } } -func AssertEqualI(i int, given any, expected any) { +func TAssertEqualI(i int, given any, expected any) { if !reflect.DeepEqual(given, expected) { if showColour() { fmt.Fprintf(os.Stderr, "\033[0;31mERR\033[0m.\n") -- cgit v1.2.3