fixed compilation error in test utils

This commit is contained in:
adamopolous 2019-08-30 07:55:05 -04:00
parent 51c503eb86
commit 43d52b6dc0

View File

@ -275,7 +275,7 @@ def Map<String, Map<String, Long>> getTestReport() {
int processedFiles = 0;
for (Map.Entry<String,Map> entry : testReport.entrySet()) {
Map<String,long> testMap = entry.getValue();
Map<String,Long> testMap = entry.getValue();
processedFiles += testMap.size();
}
logger.info("====processed: " + processedFiles + "::" + totalHtmlFiles);