Fix sinttest log string: s/AfterClass/BeforeClass/

This commit is contained in:
Florian Schmaus 2016-12-23 13:26:57 +01:00
parent 814cc1fdde
commit e27e416063
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ public class SmackIntegrationTestFramework {
beforeClassMethod.invoke(null); beforeClassMethod.invoke(null);
} }
catch (InvocationTargetException | IllegalAccessException e) { catch (InvocationTargetException | IllegalAccessException e) {
LOGGER.log(Level.SEVERE, "Exception executing @AfterClass method", e); LOGGER.log(Level.SEVERE, "Exception executing @BeforeClass method", e);
} }
catch (IllegalArgumentException e) { catch (IllegalArgumentException e) {
throw new AssertionError(e); throw new AssertionError(e);