You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by he...@apache.org on 2014/02/05 21:25:00 UTC

git commit: [Scala DSL] Test refactoring.

Updated Branches:
  refs/heads/master b6981cfd8 -> aef8678fc


[Scala DSL] Test refactoring.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/aef8678f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/aef8678f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/aef8678f

Branch: refs/heads/master
Commit: aef8678fc42b8443144a0a5e215d4fe715c82917
Parents: b6981cf
Author: Henryk Konsek <he...@gmail.com>
Authored: Wed Feb 5 21:24:41 2014 +0100
Committer: Henryk Konsek <he...@gmail.com>
Committed: Wed Feb 5 21:24:41 2014 +0100

----------------------------------------------------------------------
 .../src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/aef8678f/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala
----------------------------------------------------------------------
diff --git a/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala b/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala
index 0615084..f03ec7a 100644
--- a/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala
+++ b/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/AggregatorTest.scala
@@ -50,7 +50,7 @@ class AggregatorTest extends ScalaTestSupport {
   val builder =
     new RouteBuilder {
        "direct:a" ==> {
-         aggregate (_.in[String].substring(0, 7), new UseLatestAggregationStrategy()) completionSize(100) to "mock:a" }
+         aggregate (_.in[String].substring(0, 7), new UseLatestAggregationStrategy()) completionSize 100 to "mock:a" }
 
        //START SNIPPET: block
        "direct:b" ==> {