This issue is archived. You can view it, but you can't modify it. Learn more

ExportXMLWordPrintable

      On the history chart of test results, the duration displayed on the Y axis is not correct, as you can see in the below image:

      In function getDisplayGraph() in History.java file line 114, removing divide by 1000 solves the problem.

      Replacing line
      data.add(((double) o.getDuration()) / (1000), "", new ChartLabel(o) {
      with:
      data.add(((double) o.getDuration()), "", new ChartLabel(o) {
      results in this chart:

        1. Capture_after.PNG
          Capture_after.PNG
          54 kB
        2. Capture_before.PNG
          Capture_before.PNG
          50 kB
        3. testresults.png
          testresults.png
          77 kB

            Assignee:
            Iosif Gut
            Reporter:
            Iosif Gut
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: