XComp commented on code in PR #19916:
URL: https://github.com/apache/flink/pull/19916#discussion_r964749404


##########
flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/operators/GenericWriteAheadSinkTest.java:
##########
@@ -122,15 +123,15 @@ protected void verifyResultsWhenReScaling(
         }
 
         Collections.sort(sink.values);
-        Assert.assertArrayEquals(list.toArray(), sink.values.toArray());
+        assertThat(sink.values.toArray()).containsExactly(list.toArray());
     }
 
     @Test

Review Comment:
   No, having this minor thing being done as part of this PR is good enough. 
:+1: 



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