-
-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Description
junit-xml-formatter/java/src/main/java/io/cucumber/junitxmlformatter/XmlReportWriter.java
Line 22 in e2bb2c1
private final NumberFormat numberFormat = NumberFormat.getInstance(Locale.US); |
Suggested fix:
private final NumberFormat numberFormat = NumberFormat.getNumberInstance();
{
numberFormat.setGroupingUsed(false);
}
Example bad string:
<testsuite errors="0" failures="0" name="io.cucumber.core.plugin.JUnitFormatter" skipped="0" tests="15" time="1,384.047">
Correct string:
<testsuite errors="0" failures="0" name="io.cucumber.core.plugin.JUnitFormatter" skipped="0" tests="15" time="1384.047">
Metadata
Metadata
Assignees
Labels
No labels