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 3e53ef0f81d3a3c2527d0416117170f5b82c7843 Author: smjain <[email protected]> AuthorDate: Thu Sep 24 07:44:39 2026 +0530 CAMEL-24959: camel-core - Make the new test class package-private Co-Authored-By: Claude Opus 5.5 <[email protected]> --- .../camel/processor/SplitParallelStreamingIteratorNullTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/SplitParallelStreamingIteratorNullTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/SplitParallelStreamingIteratorNullTest.java index dbd0b92025fe..a6806170e0b2 100644 --- a/core/camel-core/src/test/java/org/apache/camel/processor/SplitParallelStreamingIteratorNullTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/processor/SplitParallelStreamingIteratorNullTest.java @@ -33,12 +33,12 @@ import static org.junit.jupiter.api.Assertions.assertTrue; * Tests that a streaming split waits for its parts and aggregates all of them when the iterator returns true from * hasNext() and then null from next() (see {@link SplitIteratorNullTest}), also with parallel processing. */ -public class SplitParallelStreamingIteratorNullTest extends ContextTestSupport { +class SplitParallelStreamingIteratorNullTest extends ContextTestSupport { private final CountDownLatch lastHasNext = new CountDownLatch(1); @Test - public void testSplitStreamingParallel() { + void testSplitStreamingParallel() { String out = template.requestBody("direct:parallel", new MyIterator(lastHasNext), String.class); // the parts complete in any order @@ -46,7 +46,7 @@ public class SplitParallelStreamingIteratorNullTest extends ContextTestSupport { } @Test - public void testSplitStreaming() { + void testSplitStreaming() { String out = template.requestBody("direct:sequential", new MyIterator(lastHasNext), String.class); assertEquals("ABC", out, "The split should return the aggregated parts, but returned: " + out);
