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

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


The following commit(s) were added to refs/heads/main by this push:
     new 605cfe0110 ci(binding/java): Don't create too many files in CI (#4289)
605cfe0110 is described below

commit 605cfe0110450ae9b8bc40f361e0056fc45193d0
Author: Xuanwo <[email protected]>
AuthorDate: Wed Feb 28 20:28:59 2024 +0800

    ci(binding/java): Don't create too many files in CI (#4289)
    
    * ci(binding/java): Don't create too many files in CI
    
    Signed-off-by: Xuanwo <[email protected]>
    
    * Format
    
    Signed-off-by: Xuanwo <[email protected]>
    
    ---------
    
    Signed-off-by: Xuanwo <[email protected]>
---
 .../src/test/java/org/apache/opendal/test/behavior/AsyncListTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncListTest.java
 
b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncListTest.java
index b761da1196..9ffe1f3b34 100644
--- 
a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncListTest.java
+++ 
b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncListTest.java
@@ -80,7 +80,7 @@ class AsyncListTest extends BehaviorTestBase {
         final String parent = "test_list_rich_dir";
         op().createDir(parent + "/").join();
         final List<String> expected = new ArrayList<>();
-        for (int i = 0; i < 100; i++) {
+        for (int i = 0; i < 10; i++) {
             expected.add(String.format("%s/file-%d", parent, i));
         }
 

Reply via email to