Skip to content

Commit

Permalink
chore: Adding more AWSS3StoragePlugin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisebas committed Sep 12, 2023
1 parent 85b2842 commit 4251ab5
Show file tree
Hide file tree
Showing 2 changed files with 573 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,6 @@ class StorageTransferTask {
}
}

private var cancelled: Bool {
status == .cancelled
}

var isFailed: Bool {
status == .error
}
Expand Down Expand Up @@ -324,7 +320,7 @@ class StorageTransferTask {
logger.warn("Unable to complete after cancelled")
return
}
guard _status == .completed else {
guard _status != .completed else {
logger.warn("Task is already completed")
return
}
Expand Down
Loading

0 comments on commit 4251ab5

Please sign in to comment.