wenbingshen commented on a change in pull request #10551:
URL: https://github.com/apache/kafka/pull/10551#discussion_r615547868
##########
File path:
core/src/test/scala/unit/kafka/admin/TopicCommandWithAdminClientTest.scala
##########
@@ -465,7 +465,7 @@ class TopicCommandWithAdminClientTest extends
KafkaServerTestHarness with Loggin
topicService.describeTopic(new TopicCommandOptions(Array("--topic",
testTopicName))))
val rows = output.split("\n")
assertEquals(3, rows.size)
- assertTrue(rows(0).startsWith(s"\tTopic: $testTopicName"))
+ assertTrue(rows(0).startsWith(s"Topic: $testTopicName"))
Review comment:
Replace
`assertTrue(rows(0).startsWith(s"Topic:$testTopicName\tPartitionCount:1"))`
with `assertTrue(rows(0).startsWith(s"Topic: $testTopicName"))`
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]