diff options
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index 3b0fb1a..8bb83ce 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -161,5 +161,7 @@ TEST_CASE("Knights of the Dinner Table", "[day13]") { TEST_CASE("Reindeer Olympics", "[day14]") { line_view lv = load_file("../src/2015/day14/input"); - REQUIRE(0 == aoc2015::day14(lv, 2503)); + auto p = aoc2015::day14(lv, 2503); + REQUIRE(2640 == p.first); + REQUIRE(0 == p.second); } |