jolshan commented on a change in pull request #10952: URL: https://github.com/apache/kafka/pull/10952#discussion_r670560488
########## File path: clients/src/test/java/org/apache/kafka/clients/MetadataTest.java ########## @@ -845,6 +887,7 @@ protected boolean retainTopic(String topic, boolean isInternal, long nowMs) { assertEquals(cluster.topics(), new HashSet<>(Arrays.asList("oldValidTopic", "keepValidTopic"))); assertEquals(cluster.partitionsForTopic("oldValidTopic").size(), 2); assertEquals(cluster.partitionsForTopic("keepValidTopic").size(), 3); + assertTrue(cluster.topicIds().containsAll(topicIds.values())); Review comment: To make it stronger, do we just also assert the inverse `(topicIds.values().containsAll(cluster.topicIds())` Or am I being silly and we can just check equality here? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org