4343azurefile = pytest .importorskip ("azure.storage.fileshare" )
4444pytestmark = [pytest .mark .azurestorage ]
4545
46- from azure .data .tables import TableServiceClient as DataTableServiceClient
4746from azure .cosmosdb .table .tableservice import TableService
47+ from azure .data .tables import TableServiceClient as DataTableServiceClient
4848from azure .storage .blob import BlobServiceClient
4949from azure .storage .fileshare import ShareClient
5050from azure .storage .queue import QueueClient
@@ -213,6 +213,7 @@ def test_data_table_create(instrument, elasticapm_client):
213213 assert span ["subtype" ] == "azuretable"
214214 assert span ["action" ] == "Create"
215215
216+
216217def test_table_create (instrument , elasticapm_client ):
217218 table_name = "apmagentpythonci" + str (uuid .uuid4 ().hex )
218219 table_service = TableService (connection_string = CONNECTION_STRING )
@@ -229,6 +230,7 @@ def test_table_create(instrument, elasticapm_client):
229230 assert span ["subtype" ] == "azuretable"
230231 assert span ["action" ] == "Create"
231232
233+
232234def test_data_table (instrument , elasticapm_client , data_table_service ):
233235 table_name = data_table_service .table_name
234236 elasticapm_client .begin_transaction ("transaction.test" )
@@ -263,6 +265,7 @@ def test_data_table(instrument, elasticapm_client, data_table_service):
263265 assert span ["type" ] == "storage"
264266 assert span ["subtype" ] == "azuretable"
265267 assert span ["action" ] == "Delete"
268+
266269
267270def test_table (instrument , elasticapm_client , table_service ):
268271 table_name = table_service .table_name
0 commit comments