mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 10:32:05 +01:00
Add missing right parenthesis in SINT output
While running the Smack integration tests, a line like this is printed to std-out somewhere Available tests: 21 (Disabled 12 classes and 6 tests There's a missing character on the end of that line, which makes the author of this commit twitch. This commit adds the missing character, resulting in a line like this: Available tests: 21 (Disabled 12 classes and 6 tests)
This commit is contained in:
parent
5782fff2a4
commit
254c315852
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