aboutsummaryrefslogtreecommitdiff
path: root/test/test_2022.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-10 22:46:28 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-10 22:46:28 +0800
commit4cb1155522ee3a4bc59583ff1858b2670d4cc356 (patch)
treef457a4733f694bccf698a2e7882ff03dc7b3ca21 /test/test_2022.cpp
parent2b81cfc18ddc268a26ccb260760e14ed0384c99e (diff)
downloadadvent-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.cpp4
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);
}