You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/08/04 14:38:27 UTC

[camel] branch main updated: (chores) camel-mail: fix test log output to stdout (#11005)

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 33cb1036052 (chores) camel-mail: fix test log output to stdout (#11005)
33cb1036052 is described below

commit 33cb10360523486bc4bfab67ee268189c95db618
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Fri Aug 4 16:38:21 2023 +0200

    (chores) camel-mail: fix test log output to stdout (#11005)
---
 .../test/java/org/apache/camel/component/mail/MailSearchTermTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailSearchTermTest.java b/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailSearchTermTest.java
index 4d43086d82b..6e642e62e07 100644
--- a/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailSearchTermTest.java
+++ b/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailSearchTermTest.java
@@ -123,7 +123,7 @@ public class MailSearchTermTest extends CamelTestSupport {
     protected RouteBuilder createRouteBuilder() {
         return new RouteBuilder() {
             public void configure() {
-                from(bill.uriPrefix(Protocol.imap) + "&debugMode=true&searchTerm=#myTerm&initialDelay=100&delay=100")
+                from(bill.uriPrefix(Protocol.imap) + "&debugMode=false&searchTerm=#myTerm&initialDelay=100&delay=100")
                         .to("mock:result");
             }
         };