diff options
Diffstat (limited to 'test/test_2018.cpp')
-rw-r--r-- | test/test_2018.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_2018.cpp b/test/test_2018.cpp index 6af2350..4747706 100644 --- a/test/test_2018.cpp +++ b/test/test_2018.cpp @@ -48,6 +48,7 @@ TEST_CASE("Alchemical Reduction", "[2018]") { TEST_CASE("Chronal Coordinates", "[2018]") { line_view lv = load_file("../src/2018/day6/input"); - auto p = aoc2018::day6(lv); - REQUIRE(3260 == p); + auto p = aoc2018::day6(lv, 10000); + REQUIRE(3260 == p.first); + REQUIRE(42535 == p.second); } |