Copilot commented on code in PR #25223: URL: https://github.com/apache/pulsar/pull/25223#discussion_r2773566249
########## pulsar-proxy/src/test/java/org/apache/pulsar/proxy/server/AdminProxyHandlerTest.java: ########## @@ -30,6 +34,7 @@ import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import lombok.Cleanup; Review Comment: Unused import: `Cleanup` is imported but never used in the test code. Consider removing this import to keep the code clean. ```suggestion ``` ########## pulsar-proxy/src/test/java/org/apache/pulsar/proxy/server/AdminProxyHandlerTest.java: ########## @@ -20,7 +20,11 @@ import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; Review Comment: Unused imports: `times` and `verify` are imported but never used in the test code. Consider removing these imports to keep the code clean. ```suggestion ``` -- 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]
