Copilot commented on code in PR #10386:
URL: https://github.com/apache/ozone/pull/10386#discussion_r3401547368


##########
hadoop-ozone/ozone-manager/src/test/java/org/apache/hadoop/ozone/om/service/TestSnapshotDeletingService.java:
##########
@@ -17,8 +17,10 @@
 
 package org.apache.hadoop.ozone.om.service;
 
+import static org.assertj.core.api.Assertions.assertThat;
 import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.Mockito.mockStatic;

Review Comment:
   `assertTrue(...)` is still used later in this test file, but the static 
import was removed in this change, which will cause a compilation failure. 
Either re-add the JUnit `assertTrue` import or convert these assertions to 
AssertJ `assertThat`.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to