diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-03-18 14:33:33 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-03-18 14:33:33 +0800 |
commit | 056c57d1808e9f11eda435729deda8b6d279ce91 (patch) | |
tree | 4b7dae6db7c191ecc85dfd277f7fe6c8c4bc012e /test/test_2015.cpp | |
parent | 96f4ab93a21e6e0fc7213b2b24757110f8146d71 (diff) | |
download | advent-of-code-056c57d1808e9f11eda435729deda8b6d279ce91.tar.gz advent-of-code-056c57d1808e9f11eda435729deda8b6d279ce91.zip |
day8 done
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 3 |
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); } |