@@ -25,7 +25,6 @@ TEST(TestAOC, TestDay3pt1_line_parse) {
2525}
2626
2727TEST (TestAOC, TestDay3pt1_example) {
28- spdlog::set_level (spdlog::level::debug);
2928 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_3_1.txt" ;
3029 const std::vector<int > line_totals{AdventOfCode24::Day3::calculate_file_lines (input_file, false )};
3130
@@ -36,7 +35,6 @@ TEST(TestAOC, TestDay3pt1_example) {
3635}
3736
3837TEST (TestAOC, TestDay3pt2_example) {
39- spdlog::set_level (spdlog::level::debug);
4038 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_3_2.txt" ;
4139 const std::vector<int > line_totals{AdventOfCode24::Day3::calculate_file_lines (input_file, true )};
4240
@@ -47,7 +45,6 @@ TEST(TestAOC, TestDay3pt2_example) {
4745}
4846
4947TEST (TestAOC, TestDay3pt1) {
50- spdlog::set_level (spdlog::level::debug);
5148 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_3.txt" ;
5249 const std::vector<int > line_totals{AdventOfCode24::Day3::calculate_file_lines (input_file, false )};
5350
@@ -57,7 +54,6 @@ TEST(TestAOC, TestDay3pt1) {
5754}
5855
5956TEST (TestAOC, TestDay3pt2) {
60- spdlog::set_level (spdlog::level::debug);
6157 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_3.txt" ;
6258 const std::vector<int > line_totals{AdventOfCode24::Day3::calculate_file_lines (input_file, true )};
6359
@@ -67,7 +63,6 @@ TEST(TestAOC, TestDay3pt2) {
6763}
6864
6965TEST (TestAOC, TestDay3pt2_scenario_1) {
70- spdlog::set_level (spdlog::level::debug);
7166 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_3_3.txt" ;
7267 const std::vector<int > line_totals{AdventOfCode24::Day3::calculate_file_lines (input_file, true )};
7368
0 commit comments