diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 12:25:54 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 12:25:54 +0800 |
commit | fcae0ee26bf6b5909441ac47e4acfe3fd040c025 (patch) | |
tree | 93dbf996b7ede0f08ed61d117b99af74bfb8de6b /test/test_2015.cpp | |
parent | 83ffcfdb072324d68fe8d8b474b8d90822b9acb8 (diff) | |
download | advent-of-code-fcae0ee26bf6b5909441ac47e4acfe3fd040c025.tar.gz advent-of-code-fcae0ee26bf6b5909441ac47e4acfe3fd040c025.zip |
2015 day24 part1
Diffstat (limited to 'test/test_2015.cpp')
-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 ce0b553..24e1e78 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -247,7 +247,7 @@ TEST_CASE("Opening the Turing Lock", "[2015]") { TEST_CASE("It Hangs in the Balance", "[2015]") { line_view lv = load_file("../src/2015/day24/input"); auto p = aoc2015::day24(lv); - REQUIRE(0 == p.first); + REQUIRE(10439961859 == p.first); REQUIRE(0 == p.second); } |