From 005b64cf0f4bcbc79f318285564589d73677b557 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com> Date: Tue, 10 Jan 2023 16:10:39 +0100 Subject: [PATCH] Remove azurite exception (#3497) --- object_store/src/azure/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/object_store/src/azure/mod.rs b/object_store/src/azure/mod.rs index 416883ac95a2..cbd5a35dc13d 100644 --- a/object_store/src/azure/mod.rs +++ b/object_store/src/azure/mod.rs @@ -965,10 +965,8 @@ mod tests { #[tokio::test] async fn azure_blob_test() { - let use_emulator = env::var("AZURE_USE_EMULATOR").is_ok(); let integration = maybe_skip_integration!().build().unwrap(); - // Azurite doesn't support listing with spaces - https://github.com/localstack/localstack/issues/6328 - put_get_delete_list_opts(&integration, use_emulator).await; + put_get_delete_list_opts(&integration, false).await; list_uses_directories_correctly(&integration).await; list_with_delimiter(&integration).await; rename_and_copy(&integration).await;