Skip to content

Commit

Permalink
issue #199: Group results in completeness
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Dec 18, 2022
1 parent da387f1 commit 80e0f0a
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,8 @@ public void completeness_pica_groupBy() throws Exception {
for (String outputFile : grouppedOutputFiles) {
File output = new File(outputDir, outputFile);
assertTrue(outputFile + " should exist", output.exists());
/*
if (!outputFile.equals("packages.csv")) {
output.delete();
assertFalse(output.exists());
}
*/
output.delete();
assertFalse(outputFile + " should not exist anymore", output.exists());
}
}
}

0 comments on commit 80e0f0a

Please sign in to comment.