You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/12/02 09:19:23 UTC

[camel] branch master updated: Fixed test after XML DSL model change to use strings for attributes

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

davsclaus 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 c83db4d  Fixed test after XML DSL model change to use strings for attributes
c83db4d is described below

commit c83db4d0df569ca6579dae335e5d373a05c60fda
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Dec 2 10:18:56 2019 +0100

    Fixed test after XML DSL model change to use strings for attributes
---
 .../hystrix/processor/HystrixHierarchicalConfigurationTest.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/platforms/spring-boot/components-starter/camel-hystrix-starter/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigurationTest.java b/platforms/spring-boot/components-starter/camel-hystrix-starter/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigurationTest.java
index 8adf5ea..28a7254 100644
--- a/platforms/spring-boot/components-starter/camel-hystrix-starter/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigurationTest.java
+++ b/platforms/spring-boot/components-starter/camel-hystrix-starter/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigurationTest.java
@@ -61,7 +61,7 @@ public class HystrixHierarchicalConfigurationTest {
 
         Assert.assertEquals("local-conf-group-key", config.getGroupKey());
         Assert.assertEquals("global-thread-key", config.getThreadPoolKey());
-        Assert.assertEquals(new Integer(5), config.getCorePoolSize());
+        Assert.assertEquals("5", config.getCorePoolSize());
     }
 
     // **********************************************