Merge "Adjust performance test timings"
[cps.git] / integration-test / src / test / java / org / onap / cps / integration / ResourceMeter.java
index c6ad96e..c7d96c4 100644 (file)
@@ -48,11 +48,11 @@ public class ResourceMeter {
     }
 
     /**
-     * Get the total time in milliseconds.
-     * @return total time in milliseconds
+     * Get the total time in seconds.
+     * @return total time in seconds
      */
-    public long getTotalTimeMillis() {
-        return stopWatch.getTotalTimeMillis();
+    public double getTotalTimeInSeconds() {
+        return stopWatch.getTotalTimeSeconds();
     }
 
     /**