snuyanzin commented on code in PR #21368: URL: https://github.com/apache/flink/pull/21368#discussion_r1031151059
########## flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateCheckpointWriterTest.java: ########## @@ -218,12 +221,14 @@ public void testRecordingOffsets() throws Exception { for (InputChannelStateHandle handle : result.inputChannelStateHandles.get()) { int headerSize = Integer.BYTES; int lengthSize = Integer.BYTES; - assertEquals(singletonList((long) headerSize), handle.getOffsets()); - assertEquals( - headerSize + lengthSize + numBytes * offsetCounts.remove(handle.getInfo()), - handle.getDelegate().getStateSize()); + assertThat(handle.getOffsets()).isEqualTo(singletonList((long) headerSize)); + assertThat(handle.getDelegate().getStateSize()) + .isEqualTo( + headerSize + + lengthSize + + numBytes * offsetCounts.remove(handle.getInfo())); } - assertTrue(offsetCounts.isEmpty()); + assertThat(offsetCounts.isEmpty()).isTrue(); Review Comment: ```suggestion assertThat(offsetCounts).isEmpty(); ``` assertJ has `isEmpty()` -- 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