From c20fcf0572949294c136072dfb737056305cb90d Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 31 Jul 2024 15:03:53 +0100 Subject: [PATCH] fix(lastword): fix typo --- tests/lastword_test/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lastword_test/main.go b/tests/lastword_test/main.go index 6c9dd03a..f7b90110 100644 --- a/tests/lastword_test/main.go +++ b/tests/lastword_test/main.go @@ -33,7 +33,7 @@ func main() { got := student.LastWord(tc.in) if !reflect.DeepEqual(got, tc.want) { log.Fatalf("%s(%q) == %q instead of %q\n", - "RevConcatAlternate", + "LastWord", tc.in, got, tc.want,