Skip to content
Snippets Groups Projects
Commit 2b13736a authored by Phillip Webb's avatar Phillip Webb
Browse files

Merge pull request #3255 from mbenson/open-files

* gh-3255:
  Ignore failures when closing war files in tests
parents 1e40bff1 38e935ee
No related merge requests found
......@@ -99,6 +99,13 @@ public class WarPackagingTests {
checkWebInfLibProvidedEntries(war, expectedLibProvidedEntries);
checkWebInfLibEntries(war, expectedLibProvidedEntries);
try {
war.close();
}
catch (IOException ex) {
// Ignore
}
}
private void checkWebInfLibProvidedEntries(JarFile war, Set<String> expectedEntries)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment