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 4a5b194..57777b8 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -130,15 +130,15 @@ TEST_CASE("Hex Ed", "[2017]") { } -TEST_CASE("", "[2017]") { +TEST_CASE("Digital Plumber", "[2017]") { line_view lv = load_file("../src/2017/day12/input"); auto p = aoc2017::day12(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(239 == p.first); + REQUIRE(215 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Packet Scanners", "[2017]") { line_view lv = load_file("../src/2017/day13/input"); auto p = aoc2017::day13(lv); REQUIRE(0 == p.first); |