diff options
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r-- | test/test_2016.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index e42d817..b253f94 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -106,7 +106,7 @@ TEST_CASE("Balance Bots", "[2016]") { REQUIRE(55637 == p.second); } -TEST_CASE("", "[2016]") { +TEST_CASE("Radioisotope Thermoelectric Generators", "[2016]") { line_view lv = load_file("../src/2016/day11/input"); auto p = aoc2016::day11(lv); REQUIRE(0 == p.first); @@ -114,10 +114,10 @@ TEST_CASE("", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Leonardo's Monorail", "[2016]") { line_view lv = load_file("../src/2016/day12/input"); auto p = aoc2016::day12(lv); - REQUIRE(0 == p.first); + REQUIRE(318077 == p.first); REQUIRE(0 == p.second); } |