From 803940cfa47ddd0df241d25f2693f686486291e4 Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Tue, 13 Jun 2023 16:44:57 +0900 Subject: [PATCH] feat: enable azblob tests (#1765) * feat: enable azblob tests * fix: add missing arg --- tests-integration/tests/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests-integration/tests/main.rs b/tests-integration/tests/main.rs index 5537e8d4b9..d06ea4d05e 100644 --- a/tests-integration/tests/main.rs +++ b/tests-integration/tests/main.rs @@ -21,7 +21,7 @@ mod sql; #[macro_use] mod region_failover; -grpc_tests!(File, S3, S3WithCache, Oss); -http_tests!(File, S3, S3WithCache, Oss); -region_failover_tests!(File, S3, S3WithCache, Oss); +grpc_tests!(File, S3, S3WithCache, Oss, Azblob); +http_tests!(File, S3, S3WithCache, Oss, Azblob); +region_failover_tests!(File, S3, S3WithCache, Oss, Azblob); sql_tests!(File);