Skip to content

Commit

Permalink
Fix failing extractMetricUpdatesStringSet (#33823)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitsinha54 authored Jan 31, 2025
1 parent ea69d81 commit 7973577
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void extractMetricUpdatesStringSet() {
.setName("some-stringset")
.setOriginalStepName("originalName"))
.setMetadata(new CounterMetadata().setKind(Kind.SET.toString())))
.setCumulative(false)
.setCumulative(true)
.setStringList(new StringList().setElements(Arrays.asList("ab", "cd")));

assertThat(executionContext.extractMetricUpdates(false), containsInAnyOrder(expected));
Expand Down

0 comments on commit 7973577

Please sign in to comment.