We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd060c commit 3e386b8Copy full SHA for 3e386b8
src/main/groovy/org/scoverage/CoverageChecker.groovy
@@ -79,7 +79,7 @@ class CoverageChecker {
79
80
@VisibleForTesting
81
protected static String errorMsg(double overallRate, double minimumRate, CoverageType type) {
82
- DecimalFormat df = new DecimalFormat("#.##", DecimalFormatSymbols.getInstance(Locale.ENGLISH))
+ DecimalFormat df = new DecimalFormat("#.##", DecimalFormatSymbols.getInstance(Locale.US))
83
String actual = df.format(overallRate * 100)
84
String expected = df.format(minimumRate * 100)
85
"Only $actual% of project is covered by tests instead of $expected% (coverageType: $type)"
0 commit comments