Skip to content

Commit 23d9197

Browse files
committed
fix copy paste mistakes in tests
1 parent 1b37ab9 commit 23d9197

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_linked_entities.py

-2
Original file line numberDiff line numberDiff line change
@@ -596,8 +596,6 @@ def test_string_index_type_not_fail_v3(self, client):
596596
"text_analytics_account": "https://cognitiveusw2dev.azure-api.net/"
597597
})
598598
def test_bing_id(self, client):
599-
# make sure that the addition of the string_index_type kwarg for v3.1-preview.1 doesn't
600-
# cause v3.0 calls to fail
601599
result = client.recognize_linked_entities(["Microsoft was founded by Bill Gates and Paul Allen"])
602600
for doc in result:
603601
for entity in doc.entities:

sdk/textanalytics/azure-ai-textanalytics/tests/test_recognize_linked_entities_async.py

-2
Original file line numberDiff line numberDiff line change
@@ -632,8 +632,6 @@ async def test_string_index_type_not_fail_v3(self, client):
632632
"text_analytics_account": "https://cognitiveusw2dev.azure-api.net/"
633633
})
634634
async def test_bing_id(self, client):
635-
# make sure that the addition of the string_index_type kwarg for v3.1-preview.1 doesn't
636-
# cause v3.0 calls to fail
637635
result = await client.recognize_linked_entities(["Microsoft was founded by Bill Gates and Paul Allen"])
638636
for doc in result:
639637
for entity in doc.entities:

0 commit comments

Comments
 (0)