diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2022.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index cc97269..0ba594d 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -110,8 +110,9 @@ TEST_CASE("Distress Signal", "[2022]") { } TEST_CASE("Regolith Reservoir", "[2022]") { - line_view lv = load_file("../src/2022/day14/input"); + line_view lv = load_file("../src/2022/day14/input0"); auto p = aoc2022::day14(lv); - REQUIRE(0 == p.first); + // REQUIRE(1133 == p.first); + REQUIRE(24 == p.first); REQUIRE(0 == p.second); } |