fix(2022-01): Add correct answer for Part 2 test case

This commit is contained in:
Josh Creek
2022-12-02 08:10:14 +00:00
parent c0a9b60d6c
commit ca0a69dcda
+1 -1
View File
@@ -74,7 +74,7 @@ namespace AOC.Tests.Y2022
9000 9000
10000", 45000)] 10000", 45000)]
[TestCase(null, 1783)] // The actual answer [TestCase(null, 203905)] // The actual answer
public void Part2(string input, int? expected) public void Part2(string input, int? expected)
{ {
string[] lines = input != null ? input.Split("\n") : realData; string[] lines = input != null ? input.Split("\n") : realData;