@@ -14,7 +14,6 @@ using namespace AdventOfCode24::Day5;
1414#endif
1515
1616TEST (TestAOC, TestDay5pt1_parse_rule) {
17- spdlog::set_level (spdlog::level::debug);
1817 const std::string test_line (" 34|78" );
1918 const std::optional<std::pair<int , int >> rule{parse_rule (test_line, ' |' )};
2019 const std::pair<int , int > expected{34 ,78 };
@@ -40,7 +39,6 @@ TEST(TestAOC, TestDay5pt1_sequence_check_fail) {
4039}
4140
4241TEST (TestAOC, TestDay5pt1_example) {
43- spdlog::set_level (spdlog::level::debug);
4442 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_5_1.txt" ;
4543 const std::vector<int > middle_values{process_file (input_file, ' |' , ' ,' )};
4644 const std::vector<int > expected{61 , 53 , 29 , 0 , 0 , 0 };
@@ -53,7 +51,6 @@ TEST(TestAOC, TestDay5pt1_example) {
5351}
5452
5553TEST (TestAOC, TestDay5pt2_example) {
56- spdlog::set_level (spdlog::level::debug);
5754 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_5_1.txt" ;
5855 const std::vector<int > middle_values{process_file (input_file, ' |' , ' ,' , true )};
5956 const std::vector<int > expected{0 , 0 , 0 , 47 , 29 , 47 };
@@ -66,7 +63,6 @@ TEST(TestAOC, TestDay5pt2_example) {
6663}
6764
6865TEST (TestAOC, TestDay5pt1) {
69- spdlog::set_level (spdlog::level::debug);
7066 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_5.txt" ;
7167 const std::vector<int > middle_values{process_file (input_file, ' |' , ' ,' )};
7268
@@ -76,7 +72,6 @@ TEST(TestAOC, TestDay5pt1) {
7672}
7773
7874TEST (TestAOC, TestDay5pt2) {
79- spdlog::set_level (spdlog::level::debug);
8075 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_5.txt" ;
8176 const std::vector<int > middle_values{process_file (input_file, ' |' , ' ,' , true )};
8277
0 commit comments