diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-03-15 17:02:03 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-03-15 17:02:03 +0800 |
commit | 682316596c43d31da35539d12e63caf1cd39155e (patch) | |
tree | 64d7b8ccb5a3936fb5b8ee4f466eb56f720299a6 /test | |
parent | ab0d13314e489ad03c226f794c0f22d0c0059549 (diff) | |
download | advent-of-code-main.tar.gz advent-of-code-main.zip |
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2017.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index 2311016..5ccb526 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -221,12 +221,12 @@ TEST_CASE("Sporifica Virus", "[2017]") { TEST_CASE("Coprocessor Conflagration", "[2017]") { line_view lv = load_file("../src/2017/day23/input"); auto p = aoc2017::day23(lv); - // REQUIRE(4225 == p.first); + REQUIRE(4225 == p.first); REQUIRE(0 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Electromagnetic Moat", "[2017]") { line_view lv = load_file("../src/2017/day24/input"); auto p = aoc2017::day24(lv); REQUIRE(0 == p.first); |