| |
| |
| @@ -35,7 +35,7 @@ void JUnitOutputDriver::startNewTest(std |
| { |
| std::stringstream suitename; |
| suitename << last_group->modname; |
| - if(last_group->mutatee != '\0') suitename << "." << last_group->mutatee; |
| + if(last_group->mutatee != nullptr) suitename << "." << last_group->mutatee; |
| log(HUMAN, "<testsuite name=\"%s\" errors=\"%d\" skipped=\"%d\" tests=\"%d\" failures=\"%d\">\n", |
| suitename.str().c_str(), group_errors, group_skips, group_tests, group_failures); |
| log(HUMAN, group_output.str().c_str()); |