You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2024/03/14 10:05:30 UTC

(camel) branch main updated: CAMEL-20522: Polished

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

davsclaus 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 0506c5a798a CAMEL-20522: Polished
0506c5a798a is described below

commit 0506c5a798afa05bf4d55e70ccc209c3e369d616
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 14 11:05:14 2024 +0100

    CAMEL-20522: Polished
---
 .../apache/camel/test/junit5/patterns/IsMockEndpointsFileTest.java    | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/patterns/IsMockEndpointsFileTest.java b/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/patterns/IsMockEndpointsFileTest.java
index 80756406e9c..f1fef982607 100644
--- a/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/patterns/IsMockEndpointsFileTest.java
+++ b/components/camel-test/camel-test-junit5/src/test/java/org/apache/camel/test/junit5/patterns/IsMockEndpointsFileTest.java
@@ -27,12 +27,10 @@ import static org.apache.camel.test.junit5.TestSupport.deleteDirectory;
 
 public class IsMockEndpointsFileTest extends CamelTestSupport {
 
-    @Override
     @BeforeEach
-    public void setUp() throws Exception {
+    public void cleanDirs() throws Exception {
         deleteDirectory("target/input");
         deleteDirectory("target/messages");
-        super.setUp();
     }
 
     @Override