diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 12:33:13 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 12:33:13 +0800 |
commit | 492fc08facfd4c46a7176c67d55ddb4947e88ba6 (patch) | |
tree | efa368d6bb32db656db25d973573dcdaa85b2ff1 /test | |
parent | fcae0ee26bf6b5909441ac47e4acfe3fd040c025 (diff) | |
download | advent-of-code-492fc08facfd4c46a7176c67d55ddb4947e88ba6.tar.gz advent-of-code-492fc08facfd4c46a7176c67d55ddb4947e88ba6.zip |
2015 day24 done
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2015.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index 24e1e78..edd56cb 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -248,7 +248,7 @@ TEST_CASE("It Hangs in the Balance", "[2015]") { line_view lv = load_file("../src/2015/day24/input"); auto p = aoc2015::day24(lv); REQUIRE(10439961859 == p.first); - REQUIRE(0 == p.second); + REQUIRE(72050269 == p.second); } TEST_CASE("Let It Snow", "[2015]") { |