snuyanzin commented on code in PR #21368: URL: https://github.com/apache/flink/pull/21368#discussion_r1031191387
########## flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImplTest.java: ########## @@ -91,15 +96,15 @@ private void testSubmitFailure( // expected: executor not started; return; } finally { - assertTrue(request.cancelled); - assertTrue(deque.isEmpty()); + assertThat(request.cancelled).isTrue(); + assertThat(deque.isEmpty()).isTrue(); Review Comment: ```suggestion assertThat(deque).isEmpty(); ``` Could be simplified -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org