Skip to content

Commit ce56ec3

Browse files
ensure that the test runs in all environments
1 parent e9a4d09 commit ce56ec3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/SmartTime.java

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package org.utplsql.sqldev.ui.runner;
1717

1818
import java.text.DecimalFormat;
19+
import java.util.Locale;
1920

2021
public class SmartTime {
2122
private Double seconds;
@@ -45,6 +46,7 @@ public Double getSeconds() {
4546

4647
@Override
4748
public String toString() {
49+
Locale.setDefault(new Locale("en", "US"));
4850
String ret;
4951
if (seconds == null) {
5052
ret = null;

0 commit comments

Comments
 (0)