aboutsummaryrefslogtreecommitdiff
path: root/test/test_2017.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r--test/test_2017.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp
index 6181679..5b3a58e 100644
--- a/test/test_2017.cpp
+++ b/test/test_2017.cpp
@@ -173,15 +173,15 @@ TEST_CASE("Permutation Promenade", "[2017]") {
TEST_CASE("Spinlock", "[2017]") {
line_view lv = load_file("../src/2017/day17/input");
auto p = aoc2017::day17(lv);
- // REQUIRE(808 == p.first);
+ REQUIRE(808 == p.first);
REQUIRE(0 == p.second);
}
-TEST_CASE("", "[2017]") {
+TEST_CASE("Duet", "[2017]") {
line_view lv = load_file("../src/2017/day18/input");
auto p = aoc2017::day18(lv);
- REQUIRE(0 == p.first);
+ REQUIRE(3423 == p.first);
REQUIRE(0 == p.second);
}