aboutsummaryrefslogtreecommitdiff
path: root/test/test_2018.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2018.cpp')
-rw-r--r--test/test_2018.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2018.cpp b/test/test_2018.cpp
index d41cac0..a7e4204 100644
--- a/test/test_2018.cpp
+++ b/test/test_2018.cpp
@@ -59,5 +59,5 @@ TEST_CASE("The Sum of Its Parts", "[2018]") {
line_view lv = load_file("../src/2018/day7/input");
char sequence[100] = {0};
aoc2018::day7(lv, sequence);
- printf("%s\n", sequence);
+ REQUIRE(strcmp("BGKDMJCNEQRSTUZWHYLPAFIVXO", sequence) == 0);
}