Skip to content

Commit 75c380b

Browse files
committed
Add required parameter.
1 parent d4ae27a commit 75c380b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hub/src/test/java/cloud/katta/core/AbstractHubSynchronizeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public void test03AddVault(final HubTestConfig config) throws Exception {
304304
// directory creation and listing
305305
final Path folder = new Path(vault, new AlphanumericRandomStringService(25).random(), EnumSet.of(Path.Type.directory));
306306

307-
hubSession.getFeature(Directory.class).mkdir(folder, new TransferStatus());
307+
hubSession.getFeature(Directory.class).mkdir(hubSession.getFeature(Write.class), folder, new TransferStatus());
308308
final AttributedList<Path> list = hubSession.getFeature(ListService.class).list(vault, new DisabledListProgressListener());
309309
assertEquals(2, list.size()); // a file and a folder
310310

0 commit comments

Comments
 (0)