Skip to content

Commit 91e697e

Browse files
#28 removing some more log messages from tests
1 parent b36931a commit 91e697e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/util.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ std::filesystem::path expected_results_path(std::string const &test_name) {
2929
}
3030

3131
nlohmann::json parse_expected_results(std::string const &test_name) {
32-
logMsg("start parse_expected_results: " + test_name);
32+
//logMsg("start parse_expected_results: " + test_name);
3333
auto path = expected_results_path(test_name);
3434
if(!std::filesystem::exists(path))
3535
{
@@ -40,7 +40,7 @@ nlohmann::json parse_expected_results(std::string const &test_name) {
4040
(std::istreambuf_iterator<char>()));
4141

4242
nlohmann::json expected_results_json = nlohmann::json::parse(content);
43-
logMsg("end parse_expected_results: " + test_name);
43+
//logMsg("end parse_expected_results: " + test_name);
4444
return expected_results_json;
4545
}
4646

0 commit comments

Comments
 (0)