We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b2c42 commit a2cb398Copy full SHA for a2cb398
prometheus-metrics-core/src/test/java/io/prometheus/metrics/core/metrics/StatefulMetricTest.java
@@ -40,7 +40,8 @@ public void testLabelRemoveWhileCollecting() throws Exception {
40
@Test
41
@SuppressWarnings("unchecked")
42
public void testLabelRemoveIf() throws Exception {
43
- Counter counter = Counter.builder().name("testLabelRemoveIf").labelNames("label1", "label2").build();
+ Counter counter =
44
+ Counter.builder().name("testLabelRemoveIf").labelNames("label1", "label2").build();
45
Field data = counter.getClass().getSuperclass().getDeclaredField("data");
46
data.setAccessible(true);
47
0 commit comments