1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-30 15:26:46 +02:00

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

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);