diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-26 00:54:11 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-26 00:54:11 +0800 |
commit | c4bb3048a264c04fcd4ae14c0a615c8ff32695c8 (patch) | |
tree | 4e130a1ec21bbe9c4163bfaa33da89d64b034549 /test | |
parent | fa8640ac94b4d14f1922c41f61a90b078f215f22 (diff) | |
download | advent-of-code-c4bb3048a264c04fcd4ae14c0a615c8ff32695c8.tar.gz advent-of-code-c4bb3048a264c04fcd4ae14c0a615c8ff32695c8.zip |
2016 day19
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2016.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index ada2ecb..14e2188 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -174,7 +174,7 @@ TEST_CASE("An Elephant Named Joseph", "[2016]") { line_view lv = load_file("../src/2016/day19/input"); auto p = aoc2016::day19(lv); REQUIRE(1816277 == p.first); - REQUIRE(0 == p.second); + REQUIRE(1410967 == p.second); } |