aboutsummaryrefslogtreecommitdiff
path: root/test/test_2020.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2020.cpp')
-rw-r--r--test/test_2020.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_2020.cpp b/test/test_2020.cpp
index 0f69dfb..d1ab578 100644
--- a/test/test_2020.cpp
+++ b/test/test_2020.cpp
@@ -53,5 +53,6 @@ TEST_CASE("Custom Customs", "[2020]") {
TEST_CASE("Handy Haversacks", "[2020]") {
line_view lv = load_file("../src/2020/day7/input");
auto p = aoc2020::day7(lv, "shiny gold");
- REQUIRE(126 == p);
+ REQUIRE(126 == p.first);
+ REQUIRE(220149 == p.second);
}