diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-02-08 15:03:02 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-02-08 15:03:02 +0800 |
commit | 6700ffdab424d6f238431efbd6094224f14c8379 (patch) | |
tree | 25787b4dbd4adc7613a26839ec8666f0ffa23fa1 /test | |
parent | 7754538a62b97cc12948e0c290006e2892a96901 (diff) | |
download | advent-of-code-6700ffdab424d6f238431efbd6094224f14c8379.tar.gz advent-of-code-6700ffdab424d6f238431efbd6094224f14c8379.zip |
2017 day11
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 69300b6..4a5b194 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -123,10 +123,10 @@ TEST_CASE("Knot Hash", "[2017]") { } TEST_CASE("Hex Ed", "[2017]") { - line_view lv = load_file("../src/2017/day11/input0"); + line_view lv = load_file("../src/2017/day11/input"); auto p = aoc2017::day11(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(877 == p.first); + REQUIRE(1622 == p.second); } |