aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-25 17:31:10 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-25 17:31:10 +0800
commit5d5bb7cd4faf03b34407a9e26ca76aac802a7306 (patch)
treea7a91a22fee93d64a3528f2be2713b26995ee4ec /test
parent2be2127f7d5ec7796f4e5b5a69068db4c1ccc42b (diff)
downloadadvent-of-code-5d5bb7cd4faf03b34407a9e26ca76aac802a7306.tar.gz
advent-of-code-5d5bb7cd4faf03b34407a9e26ca76aac802a7306.zip
2016 day17
Diffstat (limited to 'test')
-rw-r--r--test/test_2016.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp
index 97c6fc0..a88f431 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -154,11 +154,11 @@ TEST_CASE("Dragon Checksum", "[2016]") {
}
-TEST_CASE("", "[2016]") {
+TEST_CASE("Two Steps Forward", "[2016]") {
line_view lv = load_file("../src/2016/day17/input");
auto p = aoc2016::day17(lv);
- REQUIRE(0 == p.first);
- REQUIRE(0 == p.second);
+ REQUIRE("DDURRLRRDD" == p.first);
+ REQUIRE(436 == p.second);
}