summaryrefslogtreecommitdiffstats
path: root/metrics/src/tests/summetrictest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'metrics/src/tests/summetrictest.cpp')
-rw-r--r--metrics/src/tests/summetrictest.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/metrics/src/tests/summetrictest.cpp b/metrics/src/tests/summetrictest.cpp
index 09495ff038d..8e988b65b96 100644
--- a/metrics/src/tests/summetrictest.cpp
+++ b/metrics/src/tests/summetrictest.cpp
@@ -104,8 +104,7 @@ TEST(SumMetricTest, test_remove)
TEST(SumMetricTest, test_start_value)
{
MetricSnapshot snapshot("active");
- SumMetric<LongValueMetric> sum("foo", {}, "foodesc",
- &snapshot.getMetrics());
+ SumMetric<LongValueMetric> sum("foo", {}, "foodesc", &snapshot.getMetrics());
LongValueMetric start("start", {}, "", 0);
start.set(50);
sum.setStartValue(start);
@@ -115,7 +114,7 @@ TEST(SumMetricTest, test_start_value)
MetricSnapshot copy("copy");
copy.recreateSnapshot(snapshot.getMetrics(), true);
- snapshot.addToSnapshot(copy, 100);
+ snapshot.addToSnapshot(copy, system_time(100s));
LongValueMetric value("value", {}, "", &snapshot.getMetrics());
sum.addMetricToSum(value);