From 195e12103a7f5dace3ea3ca4d589c9df7a87463a Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 20 Dec 2025 13:20:49 -0600 Subject: [PATCH] test: add expected value for day 10 part 1 input --- cmd/10/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/10/main_test.go b/cmd/10/main_test.go index 9b813b0..63a1fa5 100644 --- a/cmd/10/main_test.go +++ b/cmd/10/main_test.go @@ -17,7 +17,7 @@ func TestSolvePartOneWithExampleInput(t *testing.T) { } func TestSolvePartOneWithInput(t *testing.T) { - expected := -1 + expected := 527 result := solution.SolvePartOne("INPUT.txt")