Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DefaultCoverageGenerator.java #739

Merged
merged 1 commit into from
Feb 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private void gatherCoverageData(final Collection<ClassInfo> tests,
if (exitCode == ExitCode.JUNIT_ISSUE) {
LOG.severe("Error generating coverage. Please check that your classpath contains JUnit 4.6+ or PIT test plugin for other test tool is enabled.");
throw new PitError(
"Coverage generation minion exited abnormally. Please check the classpath and/or enable test plguin for used test tool.");
"Coverage generation minion exited abnormally. Please check the classpath and/or enable test plugin for used test tool.");
} else if (!exitCode.isOk()) {
LOG.severe("Coverage generator Minion exited abnormally due to "
+ exitCode);
Expand Down