Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Dec 20, 2024
1 parent 604c6c7 commit 1586187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws-s3-transfer-manager/src/operation/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,13 +345,13 @@ mod test {
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_abort_multipart_upload() {
let expected_upload_id = Arc::new("test-upload".to_owned());
let body = Bytes::from_static(b"every adolescent dog goes bonkers early");
let body = Bytes::from_static(b"every adolescent dog goes bonkers early");
let stream = InputStream::from(body);
let bucket = "test-bucket";
let key = "test-key";
let wait_till_create_mpu = Arc::new(Barrier::new(2));

let upload_id= expected_upload_id.clone();
let upload_id = expected_upload_id.clone();
let create_mpu =
mock!(aws_sdk_s3::Client::create_multipart_upload).then_output(move || {
CreateMultipartUploadOutput::builder()
Expand Down

0 comments on commit 1586187

Please sign in to comment.