diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-02 14:13:20 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-02 14:13:20 +0800 |
commit | a756740efed33ebd2d4584497bd152fd140031a7 (patch) | |
tree | 52838b406944eb48189a347e2b128c4eb85ee270 | |
parent | 071356b435447528f3523b501b46406898312872 (diff) | |
download | advent-of-code-a756740efed33ebd2d4584497bd152fd140031a7.tar.gz advent-of-code-a756740efed33ebd2d4584497bd152fd140031a7.zip |
2022 day2 fix
-rw-r--r-- | test/test_2022.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index b54ed91..5047fe1 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -14,5 +14,5 @@ TEST_CASE("Rock Paper Scissors", "[2022]") { line_view lv = load_file("../src/2022/day2/input"); auto p = aoc2022::day2(lv); REQUIRE(17189 == p.first); - REQUIRE(0 == p.second); + REQUIRE(13490 == p.second); } |