mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 10:32: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);
|
||||
if (!testRunResult.disabledTestClasses.isEmpty() || !testRunResult.disabledTests.isEmpty()) {
|
||||
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');
|
||||
LOGGER.info(sb.toString());
|
||||
|
|
Loading…
Reference in a new issue