summaryrefslogtreecommitdiff
path: root/src/gobang.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/gobang.go')
-rw-r--r--src/gobang.go4
1 files changed, 2 insertions, 2 deletions
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")