This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new c76dd95  fix of check style
c76dd95 is described below

commit c76dd95b84b62198ffdd4819d4c75476a77e7a2a
Author: JiriOndrusek <ondrusek.j...@gmail.com>
AuthorDate: Tue Apr 28 17:59:09 2020 +0200

    fix of check style
---
 .../apache/camel/processor/enricher/EnricherAggregateStreamingTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/processor/enricher/EnricherAggregateStreamingTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/processor/enricher/EnricherAggregateStreamingTest.java
index a39674b..4bc2bcf 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/processor/enricher/EnricherAggregateStreamingTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/processor/enricher/EnricherAggregateStreamingTest.java
@@ -69,7 +69,7 @@ public class EnricherAggregateStreamingTest extends 
ContextTestSupport {
             public void configure() throws Exception {
                 getContext().setStreamCaching(Boolean.TRUE);
                 StreamCachingStrategy scs = 
getContext().getStreamCachingStrategy();
-                scs.setSpoolThreshold(1l);
+                scs.setSpoolThreshold(1L);
                 scs.setSpoolDirectory("target/streamcache/");
                 from("direct:start").process(new 
StreamProcessor()).enrich("direct:foo", new MyAggregationStrategy(), false)
                         .to("mock:result");

Reply via email to