diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2021.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test_2021.cpp b/test/test_2021.cpp index 0096a8c..3208c4b 100644 --- a/test/test_2021.cpp +++ b/test/test_2021.cpp @@ -37,9 +37,8 @@ TEST_CASE("Giant Squid", "[2021]") { } TEST_CASE("Hydrothermal Venture", "[2021]") { - line_view lv = load_file("../src/2021/day5/input0"); + line_view lv = load_file("../src/2021/day5/input"); auto p = aoc2021::day5(lv); - // REQUIRE(5774 == p.first); - REQUIRE(5 == p.first); - REQUIRE(12 == p.second); + REQUIRE(5774 == p.first); + REQUIRE(18423 == p.second); } |