mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Merge pull request #435 from guusdk/sint-cli-output-fix
Add missing right parenthesis in SINT output
This commit is contained in:
commit
b7a235f43c
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ public class SmackIntegrationTestFramework {
|
||||||
sb.append("Available tests: ").append(numberOfAvailableTests);
|
sb.append("Available tests: ").append(numberOfAvailableTests);
|
||||||
if (!testRunResult.disabledTestClasses.isEmpty() || !testRunResult.disabledTests.isEmpty()) {
|
if (!testRunResult.disabledTestClasses.isEmpty() || !testRunResult.disabledTests.isEmpty()) {
|
||||||
sb.append(" (Disabled ").append(testRunResult.disabledTestClasses.size()).append(" classes")
|
sb.append(" (Disabled ").append(testRunResult.disabledTestClasses.size()).append(" classes")
|
||||||
.append(" and ").append(testRunResult.disabledTests.size()).append(" tests");
|
.append(" and ").append(testRunResult.disabledTests.size()).append(" tests)");
|
||||||
}
|
}
|
||||||
sb.append('\n');
|
sb.append('\n');
|
||||||
LOGGER.info(sb.toString());
|
LOGGER.info(sb.toString());
|
||||||
|
|
Loading…
Reference in a new issue