Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
donatello committed Oct 25, 2024
1 parent 67eeffb commit d013000
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,10 @@ impl ClientTest {
.unwrap();
assert_eq!(resp.size, *size as usize);
assert_eq!(resp.etag, etag);
assert_eq!(resp.headers.get(header::CONTENT_TYPE).unwrap(), "image/jpeg");
assert_eq!(
resp.headers.get(header::CONTENT_TYPE).unwrap(),
"image/jpeg"
);
self.client
.remove_object(&self.test_bucket, object_name.as_str())
.send()
Expand Down

0 comments on commit d013000

Please sign in to comment.