You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2019/06/24 15:38:23 UTC

[camel] branch camel-2.24.x updated: Fixing failing scala tests

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

coheigea pushed a commit to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.24.x by this push:
     new 7537d7c  Fixing failing scala tests
7537d7c is described below

commit 7537d7cc976831b6caed4c0ad6956b4d92c98cd4
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Tue Jun 18 14:19:35 2019 +0100

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

diff --git a/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/SetHeaderTest.scala b/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/SetHeaderTest.scala
index 9bae48b..c0461b7 100644
--- a/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/SetHeaderTest.scala
+++ b/components/camel-scala/src/test/scala/org/apache/camel/scala/dsl/SetHeaderTest.scala
@@ -57,7 +57,7 @@ class SetHeaderTest extends ScalaTestSupport {
   def doTestExpression(from: String, mock: String) {
     mock expect {_.headerReceived("genus", "felis")}
     test {
-      from ! (new Cat("Duchess"), new Cat("Toulouse"))
+      from ! (new Cat("Duchess"))
     }    
   }