aboutsummaryrefslogtreecommitdiff
path: root/test/test_2015.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r--test/test_2015.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp
index dfeb90d..291a894 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -114,5 +114,6 @@ TEST_CASE("Some Assembly Required", "[day7]") {
TEST_CASE("Matchsticks", "[day8]") {
line_view lv = load_file("../src/2015/day8/input");
auto p = aoc2015::day8(lv);
- REQUIRE(1371 == p);
+ REQUIRE(1371 == p.first);
+ REQUIRE(2117 == p.second);
}