diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-04-07 13:47:34 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-04-07 13:47:34 +0800 |
commit | 79a04bce5309e3abe793879b3f96bd98b2eb9526 (patch) | |
tree | 9eb2e116a934291cbe5e88f92a0dc7e7dd43ea3e /test/test_2019.cpp | |
parent | 5c2bc1f0e9c3999db079273dd38fe7cf88cd3fe4 (diff) | |
download | advent-of-code-79a04bce5309e3abe793879b3f96bd98b2eb9526.tar.gz advent-of-code-79a04bce5309e3abe793879b3f96bd98b2eb9526.zip |
2019 day3
Diffstat (limited to 'test/test_2019.cpp')
-rw-r--r-- | test/test_2019.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2019.cpp b/test/test_2019.cpp index 02c3796..49aa050 100644 --- a/test/test_2019.cpp +++ b/test/test_2019.cpp @@ -21,6 +21,6 @@ TEST_CASE("1202 Program Alarm", "[2019]") { TEST_CASE("Crossed Wires", "[2019]") { line_view lv = load_file("../src/2019/day3/input"); auto p = aoc2019::day3(lv); - REQUIRE(0 == p.first); + REQUIRE(19242 == p.first); REQUIRE(266 == p.second); } |