Yunyung commented on code in PR #19788:
URL: https://github.com/apache/kafka/pull/19788#discussion_r2103081538
##########
core/src/test/scala/integration/kafka/api/PlaintextAdminIntegrationTest.scala:
##########
@@ -2483,7 +2483,8 @@ class PlaintextAdminIntegrationTest extends
BaseAdminIntegrationTest {
consumer.commitSync()
// Test offset deletion while consuming
- val offsetDeleteResult =
client.deleteConsumerGroupOffsets(testGroupId, util.Set.of(tp1, tp2))
+ val partitions = new
util.LinkedHashSet[TopicPartition](util.Arrays.asList(tp1, tp2))
Review Comment:
Thanks for the PR.
```suggestion
val partitions = new
util.LinkedHashSet[TopicPartition](util.List.of(tp1, tp2))
```
--
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]