Am running selenium using java test suite. TestNG created surefire-reports/TEST-TestSuite.xml file.
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" name="TestSuite" time="1,940.413" tests="29" errors="0" skipped="0" failures="4">
.
.
.
</testsuite>
Time has comma it in and causing failure due to xml-schema was unable to recognize the time saying '1,940.413' is not a valid value for 'decimal'.
How could we change the time so that it doesnot contain comma in it.