Skip to content

Commit

Permalink
aggregateJavaDocs passed successfully
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimesseddyq committed Jun 24, 2023
1 parent 5ebc85b commit 053849e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public AutoCloseExtension() {
@Override
public void afterEach(ExtensionContext context) throws Exception {
Object testInstance = context.getRequiredTestInstance();
AutoCloseUtils.closeResources(testInstance);
try {
AutoCloseUtils.closeResources(testInstance);
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
}

0 comments on commit 053849e

Please sign in to comment.