Copilot commented on code in PR #1509: URL: https://github.com/apache/ratis/pull/1509#discussion_r3540601174
########## ratis-examples/src/test/java/org/apache/ratis/examples/common/TestSubCommand.java: ########## @@ -21,7 +21,9 @@ import java.util.Collection; import java.util.Collections; +import org.apache.ratis.protocol.RaftPeer; import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; Review Comment: The import block order in this test differs from other ratis-examples tests (they place org.* imports before java.*). This can trip automated formatting/checkstyle and makes imports inconsistent within the module. -- 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]
