aboutsummaryrefslogtreecommitdiff
path: root/test/test_2016.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-25 11:34:28 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-25 11:34:28 +0800
commitf08f78b465ab805f606bbde647a12e7b3a82750d (patch)
treeac0e51ef5a5d221409b8bcc0b52412dac4b37d7f /test/test_2016.cpp
parent127fb396046cf60049d7ccf92212de5e9b6d3e36 (diff)
downloadadvent-of-code-f08f78b465ab805f606bbde647a12e7b3a82750d.tar.gz
advent-of-code-f08f78b465ab805f606bbde647a12e7b3a82750d.zip
2016 day15 done
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r--test/test_2016.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp
index 19e6ad0..658acce 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -141,8 +141,8 @@ TEST_CASE("One-Time Pad", "[2016]") {
TEST_CASE("Timing is Everything", "[2016]") {
line_view lv = load_file("../src/2016/day15/input");
auto p = aoc2016::day15(lv);
- REQUIRE(0 == p.first);
- REQUIRE(0 == p.second);
+ REQUIRE(317371 == p.first);
+ REQUIRE(2080951 == p.second);
}