leosanqing commented on code in PR #7890: URL: https://github.com/apache/hadoop/pull/7890#discussion_r2290718044
########## hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/FSImageTestUtil.java: ########## @@ -445,8 +445,8 @@ public static void assertFileContentsDifferent( public static Map<File, String> getFileMD5s(File... files) throws Exception { Map<File, String> ret = Maps.newHashMap(); for (File f : files) { - assertTrue("Must exist: " + f, f.exists()); - ret.put(f, getFileMD5(f)); + assertTrue(f.exists(), "Must exist: " + f); Review Comment: Hi, it looks like there might be an extra indent here. -- 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: common-issues-unsubscr...@hadoop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org