From 254c315852301b60a1440c30f2511d895d13ad24 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Sat, 3 Oct 2020 15:56:06 +0200 Subject: [PATCH] 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) --- .../smack/inttest/SmackIntegrationTestFramework.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/SmackIntegrationTestFramework.java b/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/SmackIntegrationTestFramework.java index e8d7758f8..c5b999a9b 100644 --- a/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/SmackIntegrationTestFramework.java +++ b/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/SmackIntegrationTestFramework.java @@ -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());