diff options
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); } |