From 72bf3d42ae440c5594b828621ab20428b6da75bc Mon Sep 17 00:00:00 2001 From: Oleg Balunenko Date: Wed, 18 Dec 2024 05:16:53 +0400 Subject: [PATCH] chore: Update tests for part 2 --- internal/puzzles/solutions/2024/day02/solution_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/puzzles/solutions/2024/day02/solution_test.go b/internal/puzzles/solutions/2024/day02/solution_test.go index 60b62148..20262adb 100755 --- a/internal/puzzles/solutions/2024/day02/solution_test.go +++ b/internal/puzzles/solutions/2024/day02/solution_test.go @@ -87,11 +87,11 @@ func Test_solution_Part2(t *testing.T) { wantErr assert.ErrorAssertionFunc }{ { - name: "", + name: "test example from description", args: args{ input: utils.ReaderFromFile(t, filepath.Join("testdata", "input.txt")), }, - want: "", + want: "4", wantErr: assert.NoError, }, {