Skip to content

Commit 4c4c623

Browse files
committed
rustfmt go brrr
1 parent cb9f5fe commit 4c4c623

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/storage/s3.rs

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ pub(crate) mod tests {
179179
let delete_req = DeleteBucketRequest {
180180
bucket: inner.bucket.to_owned(),
181181
};
182-
inner.client
182+
inner
183+
.client
183184
.delete_bucket(delete_req)
184185
.sync()
185186
.expect("failed to delete test bucket");
@@ -238,12 +239,15 @@ pub(crate) mod tests {
238239
"parent/child",
239240
"h/i/g/h/l/y/_/n/e/s/t/e/d/_/d/i/r/e/c/t/o/r/i/e/s",
240241
];
241-
let blobs: Vec<_> = names.iter().map(|&path| Blob {
242-
path: path.into(),
243-
mime: "text/plain".into(),
244-
date_updated: Timespec::new(42, 0),
245-
content: "Hello world!".into(),
246-
}).collect();
242+
let blobs: Vec<_> = names
243+
.iter()
244+
.map(|&path| Blob {
245+
path: path.into(),
246+
mime: "text/plain".into(),
247+
date_updated: Timespec::new(42, 0),
248+
content: "Hello world!".into(),
249+
})
250+
.collect();
247251
s3.upload(&blobs).unwrap();
248252
for blob in &blobs {
249253
s3.assert_blob(blob, &blob.path);

0 commit comments

Comments
 (0)