diff options
author | Jonathan Davies <jpds@protonmail.com> | 2023-05-05 21:18:29 +0100 |
---|---|---|
committer | Jonathan Davies <jpds@protonmail.com> | 2023-06-25 21:31:35 +0100 |
commit | 7f8bf2d801c55e15b5056ae08cd443325f7989b8 (patch) | |
tree | 48f23d2d4e17e5c68820923033699d604ab032aa /src/garage/tests/bucket.rs | |
parent | 4297233d3e4aea1760d81de747ad3468553be41b (diff) | |
download | garage-7f8bf2d801c55e15b5056ae08cd443325f7989b8.tar.gz garage-7f8bf2d801c55e15b5056ae08cd443325f7989b8.zip |
src/garage/tests: Updated types for aws-sdk-s3 bump.
Diffstat (limited to 'src/garage/tests/bucket.rs')
-rw-r--r-- | src/garage/tests/bucket.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/garage/tests/bucket.rs b/src/garage/tests/bucket.rs index 0dec3cfa..83487bf8 100644 --- a/src/garage/tests/bucket.rs +++ b/src/garage/tests/bucket.rs @@ -1,7 +1,7 @@ use crate::common; use crate::common::ext::CommandExt; -use aws_sdk_s3::model::BucketLocationConstraint; -use aws_sdk_s3::output::DeleteBucketOutput; +use aws_sdk_s3::operation::delete_bucket::DeleteBucketOutput; +use aws_sdk_s3::types::BucketLocationConstraint; #[tokio::test] async fn test_bucket_all() { |