Skip to content

Commit

Permalink
#28 removing some more log messages from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCzarnecki committed Jan 4, 2025
1 parent b36931a commit 91e697e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ std::filesystem::path expected_results_path(std::string const &test_name) {
}

nlohmann::json parse_expected_results(std::string const &test_name) {
logMsg("start parse_expected_results: " + test_name);
//logMsg("start parse_expected_results: " + test_name);
auto path = expected_results_path(test_name);
if(!std::filesystem::exists(path))
{
Expand All @@ -40,7 +40,7 @@ nlohmann::json parse_expected_results(std::string const &test_name) {
(std::istreambuf_iterator<char>()));

nlohmann::json expected_results_json = nlohmann::json::parse(content);
logMsg("end parse_expected_results: " + test_name);
//logMsg("end parse_expected_results: " + test_name);
return expected_results_json;
}

Expand Down

0 comments on commit 91e697e

Please sign in to comment.