Skip to content

Commit 1ad8f70

Browse files
committed
Bump coverage percentage
1 parent 688906d commit 1ad8f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_metrics.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ TEST_CASE("Counter metrics") {
1919

2020
TEST_CASE("Gauge metrics") {
2121
GaugeMetric metric = {"test.gauge.metric", {"testing-testing:123"}, true};
22-
22+
metric.set(40);
2323
metric.inc();
24-
metric.add(50);
24+
metric.add(10);
2525
metric.sub(8);
2626
metric.dec();
2727
REQUIRE(metric.value() == 42);

0 commit comments

Comments
 (0)