Skip to content

Commit 689d19d

Browse files
authored
Update test_day_2.cxx
1 parent 3f079f1 commit 689d19d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_day_2.cxx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ TEST(TestAOC, TestDay2pt1_valid) {
5050
}
5151

5252
TEST(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

6564
TEST(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

7876
TEST(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

10197
TEST(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

125119
TEST(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

Comments
 (0)