diff options
author | Lee Anjella Macabuhay <lee.anjella.macabuhay@est.tech> | 2023-11-08 16:43:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-11-08 16:43:11 +0000 |
commit | b1e4eeada32431e438094df80a3f848347d2160f (patch) | |
tree | 0c501b8fd1b9cfdced2af8a200a4c80046c729eb /integration-test/src/test/java/org | |
parent | 5bb895a012fcbca17c895d9d8f1f8ded406dbcc1 (diff) | |
parent | e082710eaff7ef813f474e8adc56358dab8debc5 (diff) |
Merge "Use Seconds as time unit for all performance tests"
Diffstat (limited to 'integration-test/src/test/java/org')
-rw-r--r-- | integration-test/src/test/java/org/onap/cps/integration/ResourceMeter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration-test/src/test/java/org/onap/cps/integration/ResourceMeter.java b/integration-test/src/test/java/org/onap/cps/integration/ResourceMeter.java index c6ad96e917..1e420013d4 100644 --- a/integration-test/src/test/java/org/onap/cps/integration/ResourceMeter.java +++ b/integration-test/src/test/java/org/onap/cps/integration/ResourceMeter.java @@ -51,8 +51,8 @@ public class ResourceMeter { * Get the total time in milliseconds. * @return total time in milliseconds */ - public long getTotalTimeMillis() { - return stopWatch.getTotalTimeMillis(); + public double getTotalTimeInSeconds() { + return stopWatch.getTotalTimeSeconds(); } /** |