Skip to content

Commit aaba698

Browse files
removing a forgotten .value in a test file (Azure#15347)
Fixes a failed pipeline run
1 parent 134b963 commit aaba698

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

sdk/tables/azure-data-tables/tests/test_table_async.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -471,19 +471,15 @@ async def test_account_sas(self, resource_group, location, storage_account, stor
471471
service = self.create_client_from_credential(TableServiceClient, token, account_url=account_url)
472472

473473
# Act
474-
# service = TableServiceClient(
475-
# self.account_url(storage_account, "table"),
476-
# credential=token,
477-
# )
478474
sas_table = service.get_table_client(table.table_name)
479475
entities = []
480476
async for e in sas_table.list_entities():
481477
entities.append(e)
482478

483479
# Assert
484480
assert len(entities) == 2
485-
assert entities[0].text.value == u'hello'
486-
assert entities[1].text.value == u'hello'
481+
assert entities[0].text == u'hello'
482+
assert entities[1].text == u'hello'
487483
finally:
488484
await self._delete_table(table=table, ts=tsc)
489485

0 commit comments

Comments
 (0)