File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ std::filesystem::path expected_results_path(std::string const &test_name) {
29
29
}
30
30
31
31
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);
33
33
auto path = expected_results_path (test_name);
34
34
if (!std::filesystem::exists (path))
35
35
{
@@ -40,7 +40,7 @@ nlohmann::json parse_expected_results(std::string const &test_name) {
40
40
(std::istreambuf_iterator<char >()));
41
41
42
42
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);
44
44
return expected_results_json;
45
45
}
46
46
You can’t perform that action at this time.
0 commit comments