diff options
author | Alex Auvolat <alex@adnab.me> | 2024-02-05 14:02:45 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-02-05 14:02:45 +0100 |
commit | 6e4229e29c1ee3e0b7f3511f80b6108e3beb1efd (patch) | |
tree | a35c1c632a8cac2694eb8b614a5db3085d3a5e80 /src/garage/tests/s3/streaming_signature.rs | |
parent | c0a7552015ff26ba542970449f1bc3df4ee9b173 (diff) | |
download | garage-6e4229e29c1ee3e0b7f3511f80b6108e3beb1efd.tar.gz garage-6e4229e29c1ee3e0b7f3511f80b6108e3beb1efd.zip |
[dep-upgrade-202402] update aws-sdk dependencies
Diffstat (limited to 'src/garage/tests/s3/streaming_signature.rs')
-rw-r--r-- | src/garage/tests/s3/streaming_signature.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/garage/tests/s3/streaming_signature.rs b/src/garage/tests/s3/streaming_signature.rs index b7a1acae..224b9ed5 100644 --- a/src/garage/tests/s3/streaming_signature.rs +++ b/src/garage/tests/s3/streaming_signature.rs @@ -57,9 +57,9 @@ async fn test_putobject_streaming() { // assert_eq!(o.version_id.unwrap(), _version); assert_eq!(o.content_type.unwrap(), content_type); assert!(o.last_modified.is_some()); - assert_eq!(o.content_length, 0); - assert_eq!(o.parts_count, 0); - assert_eq!(o.tag_count, 0); + assert_eq!(o.content_length.unwrap(), 0); + assert_eq!(o.parts_count, None); + assert_eq!(o.tag_count, None); } { @@ -95,9 +95,9 @@ async fn test_putobject_streaming() { assert_bytes_eq!(o.body, BODY); assert_eq!(o.e_tag.unwrap(), etag); assert!(o.last_modified.is_some()); - assert_eq!(o.content_length, 62); - assert_eq!(o.parts_count, 0); - assert_eq!(o.tag_count, 0); + assert_eq!(o.content_length.unwrap(), 62); + assert_eq!(o.parts_count, None); + assert_eq!(o.tag_count, None); } } @@ -187,7 +187,7 @@ async fn test_put_website_streaming() { .await .unwrap(); - assert_eq!(o.index_document.unwrap().suffix.unwrap(), "home.html"); - assert_eq!(o.error_document.unwrap().key.unwrap(), "err/error.html"); + assert_eq!(o.index_document.unwrap().suffix, "home.html"); + assert_eq!(o.error_document.unwrap().key, "err/error.html"); } } |