Copilot commented on code in PR #19880:
URL: https://github.com/apache/druid/pull/19880#discussion_r3717404304


##########
extensions-core/s3-extensions/src/test/java/org/apache/druid/storage/s3/S3TimestampVersionedDataFinderTest.java:
##########
@@ -104,7 +104,7 @@ public void testMissing()
 
     EasyMock.verify(s3Client);
 
-    Assert.assertEquals(null, latest);
+    Assertions.assertEquals(null, latest);

Review Comment:
   Prefer `Assertions.assertNull(latest)` over `Assertions.assertEquals(null, 
latest)` for clearer intent and better failure output.



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