This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 07aaaf950 Remove `test_private_bucket` object_store test (#6601)
07aaaf950 is described below
commit 07aaaf950003f96099c7a617c48cc7e8cde8b132
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Oct 20 16:21:37 2024 -0400
Remove `test_private_bucket` object_store test (#6601)
* Fix `test_private_bucket` test
* remove test
---
object_store/src/aws/resolve.rs | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/object_store/src/aws/resolve.rs b/object_store/src/aws/resolve.rs
index 4c7489316..25bc74f32 100644
--- a/object_store/src/aws/resolve.rs
+++ b/object_store/src/aws/resolve.rs
@@ -78,19 +78,6 @@ pub async fn resolve_bucket_region(bucket: &str,
client_options: &ClientOptions)
mod tests {
use super::*;
- #[tokio::test]
- async fn test_private_bucket() {
- let bucket = "bloxbender";
-
- let region = resolve_bucket_region(bucket, &ClientOptions::new())
- .await
- .unwrap();
-
- let expected = "us-west-2".to_string();
-
- assert_eq!(region, expected);
- }
-
#[tokio::test]
async fn test_bucket_does_not_exist() {
let bucket = "please-dont-exist";