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 0a02090 CAMEL-15385: Change order in properties for testing
0a02090 is described below
commit 0a020904aafe5ef4c9b92b25776bbc440c4bc241
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Aug 7 14:26:19 2020 +0200
CAMEL-15385: Change order in properties for testing
---
core/camel-main/src/test/java/org/apache/camel/main/MainSedaTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-main/src/test/java/org/apache/camel/main/MainSedaTest.java
b/core/camel-main/src/test/java/org/apache/camel/main/MainSedaTest.java
index a73afb3..d22dddf 100644
--- a/core/camel-main/src/test/java/org/apache/camel/main/MainSedaTest.java
+++ b/core/camel-main/src/test/java/org/apache/camel/main/MainSedaTest.java
@@ -30,8 +30,8 @@ public class MainSedaTest {
public void testSedaMain() throws Exception {
Main main = new Main();
main.configure().addRoutesBuilder(new MyRouteBuilder());
- main.addProperty("camel.component.seda.defaultQueueFactory",
"#class:org.apache.camel.main.MySedaBlockingQueueFactory");
main.addProperty("camel.component.seda.defaultQueueFactory.counter",
"123");
+ main.addProperty("camel.component.seda.defaultQueueFactory",
"#class:org.apache.camel.main.MySedaBlockingQueueFactory");
main.start();
CamelContext camelContext = main.getCamelContext();