diff options
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index 13c0df6..a28abd1 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -77,9 +77,9 @@ TEST_CASE("Rope Bridge", "[2022]") { REQUIRE(2522 == p.second); } -TEST_CASE("", "[2022]") { +TEST_CASE("Cathode-Ray Tube", "[2022]") { line_view lv = load_file("../src/2022/day10/input"); auto p = aoc2022::day10(lv); - REQUIRE(0 == p.first); + REQUIRE(15680 == p.first); REQUIRE(0 == p.second); } |