This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-2.25.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.25.x by this push:
new ee1cd0e Fixed test
ee1cd0e is described below
commit ee1cd0ea17334d239f931d72bac553bbf5eaa984
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Dec 19 15:09:26 2020 +0100
Fixed test
---
.../org/apache/camel/component/xmpp/XmppProducerConcurrentTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppProducerConcurrentTest.java
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppProducerConcurrentTest.java
index daf5bd4..289fcc8 100644
---
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppProducerConcurrentTest.java
+++
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppProducerConcurrentTest.java
@@ -77,7 +77,7 @@ public class XmppProducerConcurrentTest extends
CamelTestSupport {
public void configure() throws Exception {
from("direct:start")
.to("xmpp://localhost:" +
embeddedXmppTestServer.getXmppPort()
- +
"?connectionConfig=#customConnectionConfig&user=camel_consumer&password=secret&serviceName=apache.camel")
+ +
"?connectionConfig=#customConnectionConfig&room=camel-test&user=camel_consumer&password=secret&serviceName=apache.camel")
.to("mock:result");
}
};