joshua2519 commented on code in PR #20293:
URL: https://github.com/apache/kafka/pull/20293#discussion_r2374707330
##########
tools/src/test/java/org/apache/kafka/tools/streams/DeleteStreamsGroupOffsetTest.java:
##########
@@ -132,6 +132,7 @@ public void testDeleteOffsetsNonExistingGroup() {
Map.Entry<Errors, Map<TopicPartition, Throwable>> res =
service.deleteOffsets();
assertEquals(Errors.GROUP_ID_NOT_FOUND, res.getKey());
}
+ assertEquals(0, StreamsGroupCommand.execute(args));
Review Comment:
Initially, my idea was to enhance the existing test method by adding an
assertion for the exit code. The goal is to ensure that the correct exit code
is returned when the command is executed with various argument combinations.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]