Skip to content

Commit

Permalink
[FIXED JENKINS-29736] removed devide by 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
Iosif Gut committed Jan 6, 2017
1 parent 90e7ddb commit a88daae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/tasks/junit/History.java
Expand Up @@ -113,7 +113,7 @@ protected DataSetBuilder<String, ChartLabel> createDataSet() {
}

for (hudson.tasks.test.TestResult o: list) {
data.add(((double) o.getDuration()) / (1000), "", new ChartLabel(o) {
data.add(((double) o.getDuration()), "", new ChartLabel(o) {
@Override
public Color getColor() {
if (o.getFailCount() > 0)
Expand Down

0 comments on commit a88daae

Please sign in to comment.