Skip to content

Commit

Permalink
ci(binding/java): Don't create too many files in CI (#4289)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
Xuanwo authored Feb 28, 2024
1 parent 25b49d4 commit 605cfe0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void testListRichDir() {
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));
}

Expand Down

0 comments on commit 605cfe0

Please sign in to comment.