Skip to content

Commit

Permalink
Remove test_private_bucket object_store test (apache#6601)
Browse files Browse the repository at this point in the history
* Fix `test_private_bucket` test

* remove test
  • Loading branch information
alamb authored and findepi committed Oct 31, 2024
1 parent f94359b commit 7980eed
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions object_store/src/aws/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,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";
Expand Down

0 comments on commit 7980eed

Please sign in to comment.