pnowojski commented on a change in pull request #9383: [FLINK-13248] [runtime]
Adding processing of downstream messages in AsyncWaitOperator's wait loops
URL: https://github.com/apache/flink/pull/9383#discussion_r317577599
##########
File path:
flink-streaming-java/src/test/java/org/apache/flink/streaming/util/TestHarnessUtil.java
##########
@@ -58,9 +58,10 @@
* Compare the two queues containing operator/task output by converting
them to an array first.
*/
public static <T> void assertOutputEquals(String message, Queue<T>
expected, Queue<T> actual) {
- Assert.assertArrayEquals(message,
- expected.toArray(),
- actual.toArray());
+ Assert.assertEquals(
Review comment:
Are those changes related to this commit? If not, could you pull them to a
separate commit?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services