Skip to content

Commit 3f079f1

Browse files
authored
Update test_day_3.cxx
1 parent 496ba64 commit 3f079f1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/test_day_3.cxx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ TEST(TestAOC, TestDay3pt1_line_parse) {
2525
}
2626

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

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

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

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

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

Comments
 (0)