aboutsummaryrefslogtreecommitdiff
path: root/test/test_2022.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-06 17:45:09 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-06 17:45:09 +0800
commit5e7e2eac5d529f974f7fe65ca1d337c515d43268 (patch)
tree311e1bb6043ef7da6727c713acd2a923455e4075 /test/test_2022.cpp
parentcada26566ccd0fd439f4490c4cee029148bf189b (diff)
downloadadvent-of-code-5e7e2eac5d529f974f7fe65ca1d337c515d43268.tar.gz
advent-of-code-5e7e2eac5d529f974f7fe65ca1d337c515d43268.zip
2022 day18 part2 flood
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r--test/test_2022.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp
index a5649ea..8626a4c 100644
--- a/test/test_2022.cpp
+++ b/test/test_2022.cpp
@@ -149,9 +149,9 @@ TEST_CASE("Pyroclastic Flow", "[2022]") {
}
TEST_CASE("Boiling Boulders", "[2022]") {
- line_view lv = load_file("../src/2022/day18/input0");
+ line_view lv = load_file("../src/2022/day18/input");
auto p = aoc2022::day18(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(3500 == p.first);
REQUIRE(0 == p.second);
}