aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2022-04-07 13:47:34 +0800
committerkaiwu <kaiwu2004@gmail.com>2022-04-07 13:47:34 +0800
commit79a04bce5309e3abe793879b3f96bd98b2eb9526 (patch)
tree9eb2e116a934291cbe5e88f92a0dc7e7dd43ea3e /test
parent5c2bc1f0e9c3999db079273dd38fe7cf88cd3fe4 (diff)
downloadadvent-of-code-79a04bce5309e3abe793879b3f96bd98b2eb9526.tar.gz
advent-of-code-79a04bce5309e3abe793879b3f96bd98b2eb9526.zip
2019 day3
Diffstat (limited to 'test')
-rw-r--r--test/test_2019.cpp2
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);
}