diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-17 14:46:43 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-17 14:46:43 +0800 |
commit | 19cacb76086943e60f030be3b99f7361c9958666 (patch) | |
tree | fa75e1d6c947b2d9c04a8dbf673e86a9ae164918 /test/test_2022.cpp | |
parent | 66d054fde394792f2826d94908d0fd0c7f32aed4 (diff) | |
download | advent-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.cpp | 2 |
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); } |