aboutsummaryrefslogtreecommitdiff
path: root/test/test_2022.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-17 14:46:43 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-17 14:46:43 +0800
commit19cacb76086943e60f030be3b99f7361c9958666 (patch)
treefa75e1d6c947b2d9c04a8dbf673e86a9ae164918 /test/test_2022.cpp
parent66d054fde394792f2826d94908d0fd0c7f32aed4 (diff)
downloadadvent-of-code-19cacb76086943e60f030be3b99f7361c9958666.tar.gz
advent-of-code-19cacb76086943e60f030be3b99f7361c9958666.zip
2022 day19 part1 done
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r--test/test_2022.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp
index 3000efc..f077739 100644
--- a/test/test_2022.cpp
+++ b/test/test_2022.cpp
@@ -158,7 +158,7 @@ TEST_CASE("Boiling Boulders", "[2022]") {
TEST_CASE("Not Enough Minerals", "[2022]") {
line_view lv = load_file("../src/2022/day19/input0");
auto p = aoc2022::day19(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(1624 == p.first);
REQUIRE(0 == p.second);
}