This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch camel-2.23.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.23.x by this push: new d30c23e Fixing failing scala tests d30c23e is described below commit d30c23e5bc79645a076f641930932242b5eaf9d0 Author: Colm O hEigeartaigh <cohei...@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")) } }