@@ -908,7 +908,10 @@ async def test_put_block_list_with_md5(self, **kwargs):
908908
909909 @BlobPreparer ()
910910 @recorded_by_proxy_async
911- async def test_put_block_list_with_blob_tier_specified (self , storage_account_name , storage_account_key ):
911+ async def test_put_block_list_with_blob_tier_specified (self , ** kwargs ):
912+ storage_account_name = kwargs .pop ("storage_account_name" )
913+ storage_account_key = kwargs .pop ("storage_account_key" )
914+
912915 # Arrange
913916 await self ._setup (storage_account_name , storage_account_key )
914917 blob_name = self ._get_blob_reference ()
@@ -929,7 +932,10 @@ async def test_put_block_list_with_blob_tier_specified(self, storage_account_nam
929932
930933 @BlobPreparer ()
931934 @recorded_by_proxy_async
932- async def test_put_block_list_with_blob_tier_specified_cold (self , storage_account_name , storage_account_key ):
935+ async def test_put_block_list_with_blob_tier_specified_cold (self , ** kwargs ):
936+ storage_account_name = kwargs .pop ("storage_account_name" )
937+ storage_account_key = kwargs .pop ("storage_account_key" )
938+
933939 # Arrange
934940 await self ._setup (storage_account_name , storage_account_key )
935941 blob_name = self ._get_blob_reference ()
@@ -1418,7 +1424,10 @@ async def test_create_blob_from_bytes_non_parallel(self, **kwargs):
14181424
14191425 @BlobPreparer ()
14201426 @recorded_by_proxy_async
1421- async def test_create_blob_from_bytes_with_blob_tier_specified (self , storage_account_name , storage_account_key ):
1427+ async def test_create_blob_from_bytes_with_blob_tier_specified (self , ** kwargs ):
1428+ storage_account_name = kwargs .pop ("storage_account_name" )
1429+ storage_account_key = kwargs .pop ("storage_account_key" )
1430+
14221431 # Arrange
14231432 await self ._setup (storage_account_name , storage_account_key )
14241433 blob_name = self ._get_blob_reference ()
@@ -1484,7 +1493,10 @@ async def test_create_blob_from_path_non_parallel(self, **kwargs):
14841493
14851494 @BlobPreparer ()
14861495 @recorded_by_proxy_async
1487- async def test_upload_blob_from_path_non_parallel_with_standard_blob_tier (self , storage_account_name , storage_account_key ):
1496+ async def test_upload_blob_from_path_non_parallel_with_standard_blob_tier (self , ** kwargs ):
1497+ storage_account_name = kwargs .pop ("storage_account_name" )
1498+ storage_account_key = kwargs .pop ("storage_account_key" )
1499+
14881500 # Arrange
14891501 await self ._setup (storage_account_name , storage_account_key )
14901502 blob_name = self ._get_blob_reference ()
0 commit comments