diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-03-09 17:01:33 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-03-09 17:01:33 +0800 |
commit | 032241952fd7afb297b579d6c1914dbd035e8060 (patch) | |
tree | 1b772d1a62068f98b0d4069c84af23cfbf31bbbe /test/test_2017.cpp | |
parent | 735159661c0684a6aec4323150238c84fc4a7020 (diff) | |
download | advent-of-code-032241952fd7afb297b579d6c1914dbd035e8060.tar.gz advent-of-code-032241952fd7afb297b579d6c1914dbd035e8060.zip |
2017 day22 part1
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r-- | test/test_2017.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index 39af2d4..26d6a9b 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -213,7 +213,7 @@ TEST_CASE("Fractal Art", "[2017]") { TEST_CASE("Sporifica Virus", "[2017]") { line_view lv = load_file("../src/2017/day22/input"); auto p = aoc2017::day22(lv); - REQUIRE(0 == p.first); + REQUIRE(5246 == p.first); REQUIRE(0 == p.second); } |