Skip to content

Commit

Permalink
fix copy paste mistakes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft committed Aug 31, 2020
1 parent 1b37ab9 commit 23d9197
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,6 @@ def test_string_index_type_not_fail_v3(self, client):
"text_analytics_account": "https://cognitiveusw2dev.azure-api.net/"
})
def test_bing_id(self, client):
# make sure that the addition of the string_index_type kwarg for v3.1-preview.1 doesn't
# cause v3.0 calls to fail
result = client.recognize_linked_entities(["Microsoft was founded by Bill Gates and Paul Allen"])
for doc in result:
for entity in doc.entities:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,6 @@ async def test_string_index_type_not_fail_v3(self, client):
"text_analytics_account": "https://cognitiveusw2dev.azure-api.net/"
})
async def test_bing_id(self, client):
# make sure that the addition of the string_index_type kwarg for v3.1-preview.1 doesn't
# cause v3.0 calls to fail
result = await client.recognize_linked_entities(["Microsoft was founded by Bill Gates and Paul Allen"])
for doc in result:
for entity in doc.entities:
Expand Down

0 comments on commit 23d9197

Please sign in to comment.