aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-02-09 22:38:36 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-02-09 22:38:36 +0800
commit799bfdddc02739849c440f71a7de282856512c02 (patch)
tree476c451f4802a15d8515000bc98f53a884f5f27e /test
parent526228d5a94e74e600f38aa8055cb5d01e0e4eba (diff)
downloadadvent-of-code-799bfdddc02739849c440f71a7de282856512c02.tar.gz
advent-of-code-799bfdddc02739849c440f71a7de282856512c02.zip
2017 day17 part1
Diffstat (limited to 'test')
-rw-r--r--test/test_2017.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp
index ef3162c..c134d6f 100644
--- a/test/test_2017.cpp
+++ b/test/test_2017.cpp
@@ -173,7 +173,7 @@ TEST_CASE("Permutation Promenade", "[2017]") {
TEST_CASE("Spinlock", "[2017]") {
line_view lv = load_file("../src/2017/day17/input");
auto p = aoc2017::day17(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(808 == p.first);
REQUIRE(0 == p.second);
}