diff options
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r-- | test/test_2016.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index cc3fcfd..dfbb462 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -186,7 +186,7 @@ TEST_CASE("Firewall Rules", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Scrambled Letters and Hash", "[2016]") { line_view lv = load_file("../src/2016/day21/input"); char cs[8] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'}; char xs[8] = {'f', 'b', 'g', 'd', 'c', 'e', 'a', 'h'}; @@ -196,7 +196,7 @@ TEST_CASE("", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("Grid Computing", "[2016]") { line_view lv = load_file("../src/2016/day22/input"); auto p = aoc2016::day22(lv); REQUIRE(0 == p.first); |