This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch replace-all-redundant-awaitility-wrapped-mockendpo in repository https://gitbox.apache.org/repos/asf/camel.git
commit a886cfcad1155b24e3e0982a1ddc459233a52fea Author: Guillaume Nodet <[email protected]> AuthorDate: Wed Jul 8 11:08:53 2026 +0000 Fix missing throws Exception on FromFtpUseListFalseIT assertIsSatisfied() throws InterruptedException which was previously handled internally by Awaitility's untilAsserted(). Co-Authored-By: Claude Opus 4.6 <[email protected]> --- .../camel/component/file/remote/integration/FromFtpUseListFalseIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFtpUseListFalseIT.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFtpUseListFalseIT.java index 3f4a503524bc..4afa13b095de 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFtpUseListFalseIT.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFtpUseListFalseIT.java @@ -51,7 +51,7 @@ public class FromFtpUseListFalseIT extends FtpServerTestSupport { } @Test - public void testUseListFalse() { + public void testUseListFalse() throws Exception { MockEndpoint mock = getMockEndpoint("mock:result"); mock.expectedBodiesReceived("Hello World from FTPServer");
