pnowojski commented on a change in pull request #9564:
[FLINK-12481][FLINK-12482][FLINK-12958] Streaming runtime: integrate mailbox
for timer triggers, checkpoints and AsyncWaitOperator
URL: https://github.com/apache/flink/pull/9564#discussion_r319453203
##########
File path:
flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java
##########
@@ -305,14 +305,8 @@ public void testWaterMarkUnordered() throws Exception {
}
private void testEventTime(AsyncDataStream.OutputMode mode) throws
Exception {
- final AsyncWaitOperator<Integer, Integer> operator = new
AsyncWaitOperator<>(
- new MyAsyncFunction(),
- TIMEOUT,
- 2,
- mode);
-
- final OneInputStreamOperatorTestHarness<Integer, Integer>
testHarness =
- new
OneInputStreamOperatorTestHarness<>(operator, IntSerializer.INSTANCE);
+ final OneInputStreamOperatorTestHarness<Integer, Integer>
testHarness = createTestHarness(
+ new MyAsyncFunction(), TIMEOUT, 2, mode);
Review comment:
nit: can you restore previous formatting?
https://flink.apache.org/contributing/code-style-and-quality-formatting.html#breaking-the-lines-of-too-long-statements
> If you break the line then each argument/call should have a separate line,
including the first one
----------------------------------------------------------------
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