diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-02-13 15:46:32 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-02-13 15:46:32 +0800 |
commit | 7433c1c2b67b306e42d69209e5e67f79ec24b646 (patch) | |
tree | 2eb2ded5a5b4836e6eaf4f58412551b99b3e6731 /test | |
parent | 51acfc18dfd36fe4eb018a2626893c0e8401ab49 (diff) | |
download | advent-of-code-7433c1c2b67b306e42d69209e5e67f79ec24b646.tar.gz advent-of-code-7433c1c2b67b306e42d69209e5e67f79ec24b646.zip |
2017 day20
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2017.cpp | 6 |
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); |