fix: test output (it's part two)

This commit is contained in:
2025-11-24 13:41:52 +01:00
parent cddcef86a9
commit 2528bb064a

View File

@@ -24,6 +24,6 @@ func TestPartTwo(t *testing.T) {
expected := 1 expected := 1
got := PartTwo(input) got := PartTwo(input)
if got != expected { if got != expected {
t.Errorf("PartOne(%v) = %d, want %d", input, got, expected) t.Errorf("PartTwo(%v) = %d, want %d", input, got, expected)
} }
} }