Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Scherzinger <[email protected]>
  • Loading branch information
AndyScherzinger committed Feb 23, 2024
1 parent b066679 commit 8c1cef8
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,15 @@ abstract class FileUploaderIT : AbstractOnServerIT() {
user,
null,
ocUpload,
FileUploader.NameCollisionPolicy.DEFAULT,
FileUploader.LOCAL_BEHAVIOUR_COPY,
NameCollisionPolicy.DEFAULT,
FileUploadWorker.LOCAL_BEHAVIOUR_COPY,
targetContext,
false,
false
false,
storageManager
)
.setRemoteFolderToBeCreated()
.execute(client, storageManager)
.execute(client)
.isSuccess
)

Expand All @@ -117,13 +118,14 @@ abstract class FileUploaderIT : AbstractOnServerIT() {
user,
null,
ocUpload2,
FileUploader.NameCollisionPolicy.OVERWRITE,
FileUploader.LOCAL_BEHAVIOUR_COPY,
NameCollisionPolicy.OVERWRITE,
FileUploadWorker.LOCAL_BEHAVIOUR_COPY,
targetContext,
false,
false
false,
storageManager
)
.execute(client, storageManager)
.execute(client)
.isSuccess
)

Expand Down

0 comments on commit 8c1cef8

Please sign in to comment.