about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-12-08 11:33:26 -0500
committerBen Harris <ben@tilde.team>2021-12-08 11:33:26 -0500
commiteee5ff67a1758675f334f921ba330410caeedd03 (patch)
treef3727c9294e8891b96cd14e51187decf3ca59b6a
parentd38a4e70c83f0f374834f3dd13229a3d4924177c (diff)
add correct answer to d8p2
-rw-r--r--aoc2021.test/DayTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs
index bfd7dc7..3e94274 100644
--- a/aoc2021.test/DayTests.cs
+++ b/aoc2021.test/DayTests.cs
@@ -11,7 +11,7 @@ public class DayTests
     [DataRow(typeof(Day05), "7318", "19939")]
     [DataRow(typeof(Day06), "362740", "1644874076764")]
     [DataRow(typeof(Day07), "345035", "97038163")]
-    [DataRow(typeof(Day08), "362", "")]
+    [DataRow(typeof(Day08), "362", "1020159")]
     public void CheckAllDays(Type dayType, string part1, string part2)
     {
         var s = Stopwatch.StartNew();