@@ -50,7 +50,6 @@ TEST(TestAOC, TestDay2pt1_valid) {
50
50
}
51
51
52
52
TEST (TestAOC, TestDay2pt1_file1) {
53
- spdlog::set_level (spdlog::level::debug);
54
53
const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_1.txt" ;
55
54
56
55
const std::vector<bool > layer_safety = AdventOfCode24::Day2::check_reactor_safety (input_file, false );
@@ -63,7 +62,6 @@ TEST(TestAOC, TestDay2pt1_file1) {
63
62
}
64
63
65
64
TEST (TestAOC, TestDay2pt1) {
66
- spdlog::set_level (spdlog::level::debug);
67
65
const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_2.txt" ;
68
66
69
67
const std::vector<bool > layer_safety = AdventOfCode24::Day2::check_reactor_safety (input_file, false );
@@ -76,8 +74,6 @@ TEST(TestAOC, TestDay2pt1) {
76
74
}
77
75
78
76
TEST (TestAOC, TestDay2pt2_file1) {
79
- spdlog::set_level (spdlog::level::debug);
80
-
81
77
std::vector<bool > expected{true , false , false , true , true , true };
82
78
const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_1.txt" ;
83
79
int index{0 };
@@ -99,8 +95,6 @@ TEST(TestAOC, TestDay2pt2_file1) {
99
95
}
100
96
101
97
TEST (TestAOC, TestDay2pt2_file2) {
102
- spdlog::set_level (spdlog::level::debug);
103
-
104
98
const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " day_2_2.txt" ;
105
99
int index{0 };
106
100
@@ -123,8 +117,6 @@ TEST(TestAOC, TestDay2pt2_file2) {
123
117
}
124
118
125
119
TEST (TestAOC, TestDay2pt2) {
126
- spdlog::set_level (spdlog::level::debug);
127
-
128
120
std::vector<bool > expected{true , false , false , true , true , true };
129
121
const std::filesystem::path input_file = std::filesystem::path (ADVENT_OF_CODE_DATA) / " .." / " .." / " solutions" / " data" / " day_2.txt" ;
130
122
int index{0 };
0 commit comments