aboutsummaryrefslogtreecommitdiff
path: root/test/test_2015.cpp
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2022-03-24 17:09:23 +0800
committerkaiwu <kaiwu2004@gmail.com>2022-03-24 17:09:23 +0800
commit5c4a35c77539e969f4c20a0702402996b8848683 (patch)
tree7affb54ded18260434b657bcd4f02554e2281dd9 /test/test_2015.cpp
parent8a3c5c59fb522334a2f181fc05cc148df5401cdb (diff)
downloadadvent-of-code-5c4a35c77539e969f4c20a0702402996b8848683.tar.gz
advent-of-code-5c4a35c77539e969f4c20a0702402996b8848683.zip
day19 part2 another too long
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r--test/test_2015.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp
index 442ffe1..8d22a72 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -201,9 +201,9 @@ TEST_CASE("Like a GIF For Your Yard", "[day18]") {
}
TEST_CASE("Medicine for Rudolph", "[day19]") {
- // line_view lv = load_file("../src/2015/day19/input");
- line_view lv = line_view{"e => H\ne => O\nH => HO\nH => OH\nO => HH\n\nHOHOHO\n"};
+ line_view lv = load_file("../src/2015/day19/input");
+ // line_view lv = line_view{"e => H\ne => O\nH => HO\nH => OH\nO => HH\n\nHOHOHO\n"};
auto p = aoc2015::day19(lv);
// REQUIRE(509 == p.first);
- REQUIRE(6 == p.second);
+ REQUIRE(0 == p.second);
}