diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-10 22:46:28 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-10 22:46:28 +0800 |
commit | 4cb1155522ee3a4bc59583ff1858b2670d4cc356 (patch) | |
tree | f457a4733f694bccf698a2e7882ff03dc7b3ca21 /test/test_2022.cpp | |
parent | 2b81cfc18ddc268a26ccb260760e14ed0384c99e (diff) | |
download | advent-of-code-4cb1155522ee3a4bc59583ff1858b2670d4cc356.tar.gz advent-of-code-4cb1155522ee3a4bc59583ff1858b2670d4cc356.zip |
2022 day16 part1
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index 3d1c627..51c397a 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -135,9 +135,9 @@ TEST_CASE("Beacon Exclusion Zone", "[2022]") { } TEST_CASE("Proboscidea Volcanium", "[2022]") { - line_view lv = load_file("../src/2022/day16/input0"); + line_view lv = load_file("../src/2022/day16/input"); auto p = aoc2022::day16(lv); - REQUIRE(0 == p.first); + REQUIRE(1796 == p.first); REQUIRE(0 == p.second); } |