This is an automated email from the ASF dual-hosted git repository. apupier pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1d40a5e7e6ca87247d6c4b4922e16f29cd594c4e Author: smjain <[email protected]> AuthorDate: Thu Sep 24 07:44:38 2026 +0530 CAMEL-24960: camel-core - Make the new test class package-private Co-Authored-By: Claude Opus 5.5 <[email protected]> --- .../camel/processor/MulticastParallelSubTaskRejectedTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelSubTaskRejectedTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelSubTaskRejectedTest.java index 9828976658c2..eb4cc29878f4 100644 --- a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelSubTaskRejectedTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelSubTaskRejectedTest.java @@ -45,20 +45,20 @@ import static org.junit.jupiter.api.Assertions.assertInstanceOf; */ @Isolated @Timeout(30) -public class MulticastParallelSubTaskRejectedTest extends ContextTestSupport { +class MulticastParallelSubTaskRejectedTest extends ContextTestSupport { @Test - public void testSplitSingleElement() throws Exception { + void testSplitSingleElement() throws Exception { assertRejected("direct:split", List.of("a")); } @Test - public void testMulticast() throws Exception { + void testMulticast() throws Exception { assertRejected("direct:multicast", "Hello World"); } @Test - public void testRecipientList() throws Exception { + void testRecipientList() throws Exception { assertRejected("direct:recipients", "mock:z"); }
