diff options
Diffstat (limited to 'test/test_2017.cpp')
-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 32e4ffd..2fe5b3b 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -157,12 +157,12 @@ TEST_CASE("Disk Defragmentation", "[2017]") { TEST_CASE("Dueling Generators", "[2017]") { line_view lv = load_file("../src/2017/day15/input"); auto p = aoc2017::day15(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(631 == p.first); + REQUIRE(279 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Permutation Promenade", "[2017]") { line_view lv = load_file("../src/2017/day16/input"); auto p = aoc2017::day16(lv); REQUIRE(0 == p.first); |