mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-15 00:32:06 +01:00
[sinttest] Fix indentation
This commit is contained in:
parent
1eb5649123
commit
d67262a5e0
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ public class SmackIntegrationTestFramework {
|
||||||
for (FailedTest failedTest : testRunResult.failedIntegrationTests) {
|
for (FailedTest failedTest : testRunResult.failedIntegrationTests) {
|
||||||
final Throwable cause = failedTest.failureReason;
|
final Throwable cause = failedTest.failureReason;
|
||||||
LOGGER.log(Level.SEVERE, failedTest.concreteTest + " failed: " + cause, cause);
|
LOGGER.log(Level.SEVERE, failedTest.concreteTest + " failed: " + cause, cause);
|
||||||
if (failedTest.concreteTest.method.getDeclaringClass().isAnnotationPresent(SpecificationReference.class)) {
|
if (failedTest.concreteTest.method.getDeclaringClass().isAnnotationPresent(SpecificationReference.class)) {
|
||||||
final String specificationReference = getSpecificationReference(failedTest.concreteTest.method);
|
final String specificationReference = getSpecificationReference(failedTest.concreteTest.method);
|
||||||
if (specificationReference != null) {
|
if (specificationReference != null) {
|
||||||
bySpecification.add("- " + specificationReference + " (as tested by '" + failedTest.concreteTest + "')");
|
bySpecification.add("- " + specificationReference + " (as tested by '" + failedTest.concreteTest + "')");
|
||||||
|
|
Loading…
Reference in a new issue