diff options
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r-- | test/test_2017.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index ab7c8cb..4e25464 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -211,14 +211,14 @@ TEST_CASE("Fractal Art", "[2017]") { TEST_CASE("Sporifica Virus", "[2017]") { - line_view lv = load_file("../src/2017/day22/input0"); + line_view lv = load_file("../src/2017/day22/input"); auto p = aoc2017::day22(lv); - // REQUIRE(5246 == p.first); - REQUIRE(0 == p.second); + REQUIRE(5246 == p.first); + REQUIRE(2512059 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Coprocessor Conflagration", "[2017]") { line_view lv = load_file("../src/2017/day23/input"); auto p = aoc2017::day23(lv); REQUIRE(0 == p.first); |