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 8573cd7..ef529a0 100644
--- a/test/test_2020.cpp
+++ b/test/test_2020.cpp
@@ -61,5 +61,6 @@ TEST_CASE("Handy Haversacks", "[2020]") {
TEST_CASE("Handheld Halting", "[2020]") {
line_view lv = load_file("../src/2020/day8/input");
auto p = aoc2020::day8(lv);
- REQUIRE(1814 == p);
+ REQUIRE(1814 == p.first);
+ REQUIRE(1056 == p.second);
}