diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 15:05:43 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 15:05:43 +0800 |
commit | 6b36d30a067fbd01ed5f68c0791abfb2259f8868 (patch) | |
tree | 3f1a5a88131d6eb02df8b88fc2c56258a8fac7db /test | |
parent | 0be5a28f1373448194c1266ec33a7e5860e806d9 (diff) | |
download | advent-of-code-6b36d30a067fbd01ed5f68c0791abfb2259f8868.tar.gz advent-of-code-6b36d30a067fbd01ed5f68c0791abfb2259f8868.zip |
2022 day13
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2022.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index b793acd..cc97269 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -106,7 +106,7 @@ TEST_CASE("Distress Signal", "[2022]") { line_view lv = load_file("../src/2022/day13/input"); auto p = aoc2022::day13(lv); REQUIRE(5003 == p.first); - // REQUIRE(0 == p.second); + REQUIRE(20280 == p.second); } TEST_CASE("Regolith Reservoir", "[2022]") { |