aboutsummaryrefslogtreecommitdiff
path: root/test/test_2016.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-27 23:31:34 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-27 23:31:34 +0800
commit12a9e8f7fe9c11efc5bd24e288af19d94e3466de (patch)
treeb071bde44db6354338fa287065dede6173ca7435 /test/test_2016.cpp
parent505fa24b22d0093516ed3d725bec68912e0f878a (diff)
downloadadvent-of-code-12a9e8f7fe9c11efc5bd24e288af19d94e3466de.tar.gz
advent-of-code-12a9e8f7fe9c11efc5bd24e288af19d94e3466de.zip
2016 day23 part1
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r--test/test_2016.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp
index 5fa17e7..76bf2e9 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -207,7 +207,7 @@ TEST_CASE("Grid Computing", "[2016]") {
TEST_CASE("Safe Cracking", "[2016]") {
line_view lv = load_file("../src/2016/day23/input");
auto p = aoc2016::day23(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(13140 == p.first);
REQUIRE(0 == p.second);
}