diff options
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r-- | test/test_2017.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index db8d5b9..d7923b9 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -142,11 +142,11 @@ TEST_CASE("Packet Scanners", "[2017]") { line_view lv = load_file("../src/2017/day13/input"); auto p = aoc2017::day13(lv); REQUIRE(2384 == p.first); - REQUIRE(0 == p.second); + REQUIRE(3921270 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Disk Defragmentation", "[2017]") { line_view lv = load_file("../src/2017/day14/input"); auto p = aoc2017::day14(lv); REQUIRE(0 == p.first); |