aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-25 23:06:45 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-25 23:06:45 +0800
commitfa8640ac94b4d14f1922c41f61a90b078f215f22 (patch)
tree90bef23cb4141d26df02fed4b585bdd53f042be0 /test
parentd14d334f1b6890258bd68dc1d73d88fe97129851 (diff)
downloadadvent-of-code-fa8640ac94b4d14f1922c41f61a90b078f215f22.tar.gz
advent-of-code-fa8640ac94b4d14f1922c41f61a90b078f215f22.zip
2016 part1
Diffstat (limited to 'test')
-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 9a1b571..ada2ecb 100644
--- a/test/test_2016.cpp
+++ b/test/test_2016.cpp
@@ -170,10 +170,10 @@ TEST_CASE("Like a Rogue", "[2016]") {
}
-TEST_CASE("", "[2016]") {
+TEST_CASE("An Elephant Named Joseph", "[2016]") {
line_view lv = load_file("../src/2016/day19/input");
auto p = aoc2016::day19(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(1816277 == p.first);
REQUIRE(0 == p.second);
}