You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/08/02 06:17:31 UTC

[camel] 02/02: Format fix

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

acosentino pushed a commit to branch aws-sdk-2.20.117
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 42c8c11572152bdd7c9307fd03905b30fe760926
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Aug 2 08:17:07 2023 +0200

    Format fix
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../apache/camel/dataformat/zipfile/ZipFileSplitAndDeleteTest.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/components/camel-zipfile/src/test/java/org/apache/camel/dataformat/zipfile/ZipFileSplitAndDeleteTest.java b/components/camel-zipfile/src/test/java/org/apache/camel/dataformat/zipfile/ZipFileSplitAndDeleteTest.java
index 678cd9d1680..499b9755f35 100644
--- a/components/camel-zipfile/src/test/java/org/apache/camel/dataformat/zipfile/ZipFileSplitAndDeleteTest.java
+++ b/components/camel-zipfile/src/test/java/org/apache/camel/dataformat/zipfile/ZipFileSplitAndDeleteTest.java
@@ -58,7 +58,8 @@ public class ZipFileSplitAndDeleteTest extends CamelTestSupport {
         notify.matchesWaitTime();
 
         // the original file should have been deleted
-        Awaitility.await().atMost(Duration.ofSeconds(10)).untilAsserted(() -> assertFalse(new File(zipFile).exists(), "File should been deleted"));
+        Awaitility.await().atMost(Duration.ofSeconds(10))
+                .untilAsserted(() -> assertFalse(new File(zipFile).exists(), "File should been deleted"));
     }
 
     @Test
@@ -73,7 +74,8 @@ public class ZipFileSplitAndDeleteTest extends CamelTestSupport {
         notify.matchesWaitTime();
 
         // the original file should have been deleted
-        Awaitility.await().atMost(Duration.ofSeconds(10)).untilAsserted(() -> assertFalse(new File(zipFile).exists(), "File should been deleted"));
+        Awaitility.await().atMost(Duration.ofSeconds(10))
+                .untilAsserted(() -> assertFalse(new File(zipFile).exists(), "File should been deleted"));
     }
 
     @Override