aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-02-13 15:46:32 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-02-13 15:46:32 +0800
commit7433c1c2b67b306e42d69209e5e67f79ec24b646 (patch)
tree2eb2ded5a5b4836e6eaf4f58412551b99b3e6731 /test
parent51acfc18dfd36fe4eb018a2626893c0e8401ab49 (diff)
downloadadvent-of-code-7433c1c2b67b306e42d69209e5e67f79ec24b646.tar.gz
advent-of-code-7433c1c2b67b306e42d69209e5e67f79ec24b646.zip
2017 day20
Diffstat (limited to 'test')
-rw-r--r--test/test_2017.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp
index 975096a..d9db869 100644
--- a/test/test_2017.cpp
+++ b/test/test_2017.cpp
@@ -197,12 +197,12 @@ TEST_CASE("A Series of Tubes", "[2017]") {
TEST_CASE("Particle Swarm", "[2017]") {
line_view lv = load_file("../src/2017/day20/input");
auto p = aoc2017::day20(lv);
- REQUIRE(0 == p.first);
- REQUIRE(0 == p.second);
+ REQUIRE(457 == p.first);
+ REQUIRE(448 == p.second);
}
-TEST_CASE("", "[2017]") {
+TEST_CASE("Fractal Art", "[2017]") {
line_view lv = load_file("../src/2017/day21/input");
auto p = aoc2017::day21(lv);
REQUIRE(0 == p.first);