diff options
Diffstat (limited to 'test')
-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 658acce..97c6fc0 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -146,11 +146,11 @@ TEST_CASE("Timing is Everything", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Dragon Checksum", "[2016]") { line_view lv = load_file("../src/2016/day16/input"); auto p = aoc2016::day16(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE("01110011101111011" == p.first); + REQUIRE("11001111011000111" == p.second); } |