@@ -50,7 +50,6 @@ TEST(TestAOC, TestDay2pt1_valid) {
5050}
5151
5252TEST (TestAOC, TestDay2pt1_file1) {
53- spdlog::set_level (spdlog::level::debug);
5453 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_1.txt" ;
5554
5655 const std::vector<bool > layer_safety = AdventOfCode24::Day2::check_reactor_safety (input_file, false );
@@ -63,7 +62,6 @@ TEST(TestAOC, TestDay2pt1_file1) {
6362}
6463
6564TEST (TestAOC, TestDay2pt1) {
66- spdlog::set_level (spdlog::level::debug);
6765 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_2.txt" ;
6866
6967 const std::vector<bool > layer_safety = AdventOfCode24::Day2::check_reactor_safety (input_file, false );
@@ -76,8 +74,6 @@ TEST(TestAOC, TestDay2pt1) {
7674}
7775
7876TEST (TestAOC, TestDay2pt2_file1) {
79- spdlog::set_level (spdlog::level::debug);
80-
8177 std::vector<bool > expected{true , false , false , true , true , true };
8278 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_1.txt" ;
8379 int index{0 };
@@ -99,8 +95,6 @@ TEST(TestAOC, TestDay2pt2_file1) {
9995}
10096
10197TEST (TestAOC, TestDay2pt2_file2) {
102- spdlog::set_level (spdlog::level::debug);
103-
10498 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_2.txt" ;
10599 int index{0 };
106100
@@ -123,8 +117,6 @@ TEST(TestAOC, TestDay2pt2_file2) {
123117}
124118
125119TEST (TestAOC, TestDay2pt2) {
126- spdlog::set_level (spdlog::level::debug);
127-
128120 std::vector<bool > expected{true , false , false , true , true , true };
129121 const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_2.txt" ;
130122 int index{0 };
0 commit comments