aboutsummaryrefslogtreecommitdiff
path: root/test/test_2017.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-02-13 14:32:16 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-02-13 14:32:16 +0800
commit51acfc18dfd36fe4eb018a2626893c0e8401ab49 (patch)
tree9e54f5bb4f6982a4d7ae90bb6daf5c9d6da801d6 /test/test_2017.cpp
parent18e9b3dd35e16cb2393ffac02b4c88be89274273 (diff)
downloadadvent-of-code-51acfc18dfd36fe4eb018a2626893c0e8401ab49.tar.gz
advent-of-code-51acfc18dfd36fe4eb018a2626893c0e8401ab49.zip
2017 day19
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r--test/test_2017.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp
index bce71ef..975096a 100644
--- a/test/test_2017.cpp
+++ b/test/test_2017.cpp
@@ -190,11 +190,11 @@ TEST_CASE("A Series of Tubes", "[2017]") {
line_view lv = load_file("../src/2017/day19/input");
auto p = aoc2017::day19(lv);
REQUIRE("PVBSCMEQHY" == p.first);
- REQUIRE(0 == p.second);
+ REQUIRE(17736 == p.second);
}
-TEST_CASE("", "[2017]") {
+TEST_CASE("Particle Swarm", "[2017]") {
line_view lv = load_file("../src/2017/day20/input");
auto p = aoc2017::day20(lv);
REQUIRE(0 == p.first);