Skip to content

Commit

Permalink
[fix][test] Fix testPerTopicStats (#22870)
Browse files Browse the repository at this point in the history
Signed-off-by: Zixuan Liu <[email protected]>
  • Loading branch information
nodece committed Jun 7, 2024
1 parent ad59b79 commit 647fa08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public void testPerTopicStats() throws Exception {
assertEquals(cm.size(), 1);
assertEquals(cm.get(0).tags.get("cluster"), "test");

cm = (List<Metric>) metrics.get("topic_load_failed_total");
cm = (List<Metric>) metrics.get("topic_load_failed");
assertEquals(cm.size(), 1);
assertEquals(cm.get(0).tags.get("cluster"), "test");

Expand Down

0 comments on commit 647fa08

Please sign in to comment.