aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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 ef76a14..ee27493 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -201,7 +201,7 @@ 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{"H => HO\nH => OH\nO => HH\n\nHOH\n"};
- aoc2015::day19(lv);
+ line_view lv = load_file("../src/2015/day19/input");
+ // line_view lv = line_view{"H => HO\nH => OH\nO => HH\n\nHOH\n"};
+ REQUIRE(0 == aoc2015::day19(lv));
}