slinkydeveloper commented on a change in pull request #19039:
URL: https://github.com/apache/flink/pull/19039#discussion_r824552089



##########
File path: 
flink-table/flink-table-runtime/src/test/java/org/apache/flink/table/runtime/operators/sort/SortUtilTest.java
##########
@@ -124,7 +125,7 @@ public void testNormalizedKey() {
 
             Arrays.sort(segments, (o1, o2) -> o1.compare(o2, 0, 0, 8));
             for (int i = 0; i < len; i++) {
-                Assert.assertTrue(compareSegs[i].equalTo(segments[i], 0, 0, 
8));
+                assertThat(compareSegs[i].equalTo(segments[i], 0, 0, 
8)).isTrue();

Review comment:
       This is incorrect, as this method comes from our API




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


Reply via email to