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 Apr 9, 2024
1 parent 4fa3917 commit f8b43e8
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,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 @@ -103,13 +104,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 f8b43e8

Please sign in to comment.