From ca0a69dcdabed63449e4b1b60ce2e0f61904df9b Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Fri, 2 Dec 2022 08:10:14 +0000 Subject: [PATCH] fix(2022-01): Add correct answer for Part 2 test case --- AdventOfCode/AOC.Tests/Y2022/Day01.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AdventOfCode/AOC.Tests/Y2022/Day01.cs b/AdventOfCode/AOC.Tests/Y2022/Day01.cs index 95abae1..f9cfc62 100644 --- a/AdventOfCode/AOC.Tests/Y2022/Day01.cs +++ b/AdventOfCode/AOC.Tests/Y2022/Day01.cs @@ -74,7 +74,7 @@ namespace AOC.Tests.Y2022 9000 10000", 45000)] - [TestCase(null, 1783)] // The actual answer + [TestCase(null, 203905)] // The actual answer public void Part2(string input, int? expected) { string[] lines = input != null ? input.Split("\n") : realData;