Jiabao-Sun commented on code in PR #23200: URL: https://github.com/apache/flink/pull/23200#discussion_r1295830379
########## flink-runtime/src/test/java/org/apache/flink/runtime/io/disk/iomanager/IOManagerITCase.java: ########## @@ -222,7 +220,7 @@ public void parallelChannelsTest() throws Exception { // check that files are deleted for (int i = 0; i < NUM_CHANNELS; i++) { File f = new File(ids[i].getPath()); - Assert.assertFalse("Channel file has not been deleted.", f.exists()); + assertThat(f.exists()).withFailMessage("Channel file has not been deleted.").isFalse(); Review Comment: Thanks for catching this! -- 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