diff --git a/2020/day02/main_test.go b/2020/day02/main_test.go index b9466f4..fc1f549 100644 --- a/2020/day02/main_test.go +++ b/2020/day02/main_test.go @@ -24,6 +24,6 @@ func TestPartTwo(t *testing.T) { expected := 1 got := PartTwo(input) if got != expected { - t.Errorf("PartOne(%v) = %d, want %d", input, got, expected) + t.Errorf("PartTwo(%v) = %d, want %d", input, got, expected) } }