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/17 10:55:50 UTC

[camel] branch main updated: CAMEL-18998: removed @Disabled in camel-ftp test (#11135)

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 8773d162e65 CAMEL-18998: removed @Disabled in camel-ftp test (#11135)
8773d162e65 is described below

commit 8773d162e6565b80523f4bf88736922d8091a3af
Author: LostArtist <93...@users.noreply.github.com>
AuthorDate: Thu Aug 17 12:55:43 2023 +0200

    CAMEL-18998: removed @Disabled in camel-ftp test (#11135)
    
    Code works fine without changes
    
    Co-authored-by: Nikita Konovalov <nk...@redhat.com>
---
 .../component/file/remote/integration/FromFileToFtpSplitParallelIT.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java
index c5c470fcb6b..e3561dd5e97 100644
--- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java
+++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java
@@ -29,7 +29,6 @@ import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.spi.ThreadPoolProfile;
 import org.junit.jupiter.api.Assumptions;
 import org.junit.jupiter.api.BeforeEach;
-import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Tag;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.io.TempDir;
@@ -39,7 +38,6 @@ import org.slf4j.LoggerFactory;
 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
 
 @Tag("not-parallel")
-@Disabled("Disabled due to CAMEL-18998")
 class FromFileToFtpSplitParallelIT extends FtpServerTestSupport {
     private static final Logger LOG = LoggerFactory.getLogger(FromFileToFtpSplitParallelIT.class);