aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-02-06 11:40:09 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-02-06 11:40:09 +0800
commita8ba24a058c7026491e212d25d806a7359c33176 (patch)
treef0d53f2d404865fafe89306c4d700f0cabe8af9c /test
parent40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b (diff)
downloadadvent-of-code-a8ba24a058c7026491e212d25d806a7359c33176.tar.gz
advent-of-code-a8ba24a058c7026491e212d25d806a7359c33176.zip
2016 day24
Diffstat (limited to 'test')
-rw-r--r--test/test_2016.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp
index 040f96c..31320d6 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -213,14 +213,14 @@ TEST_CASE("Safe Cracking", "[2016]") {
TEST_CASE("Air Duct Spelunking", "[2016]") {
- line_view lv = load_file("../src/2016/day24/input0");
+ line_view lv = load_file("../src/2016/day24/input");
auto p = aoc2016::day24(lv);
- REQUIRE(0 == p.first);
- REQUIRE(0 == p.second);
+ REQUIRE(490 == p.first);
+ REQUIRE(744 == p.second);
}
-TEST_CASE("", "[2016]") {
+TEST_CASE("Clock Signal", "[2016]") {
line_view lv = load_file("../src/2016/day25/input");
auto p = aoc2016::day25(lv);
REQUIRE(0 == p.first);