diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 13:22:25 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-19 13:22:25 +0800 |
commit | a5ab1e0bdbb8ccc53199c3783100e971e23a2c7a (patch) | |
tree | 74b7af62257307e1db405f9a87551d795bf3453e /test | |
parent | 492fc08facfd4c46a7176c67d55ddb4947e88ba6 (diff) | |
download | advent-of-code-a5ab1e0bdbb8ccc53199c3783100e971e23a2c7a.tar.gz advent-of-code-a5ab1e0bdbb8ccc53199c3783100e971e23a2c7a.zip |
2015 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 edd56cb..4b07885 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -254,6 +254,6 @@ TEST_CASE("It Hangs in the Balance", "[2015]") { TEST_CASE("Let It Snow", "[2015]") { line_view lv = load_file("../src/2015/day25/input"); auto p = aoc2015::day25(lv); - REQUIRE(0 == p.first); + REQUIRE(19980801 == p.first); REQUIRE(0 == p.second); } |