Skip to content

Commit

Permalink
newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapratico committed Nov 4, 2020
1 parent 39456a4 commit 9928714
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,4 +382,4 @@ def test_content_language_v2(self, client):
myfile = fd.read()
with pytest.raises(ValueError) as e:
client.begin_recognize_content(myfile, language="en")
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)
Original file line number Diff line number Diff line change
Expand Up @@ -421,4 +421,4 @@ async def test_content_language_v2(self, client):
async with client:
with pytest.raises(ValueError) as e:
await client.begin_recognize_content(myfile, language="en")
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)
Original file line number Diff line number Diff line change
Expand Up @@ -301,4 +301,4 @@ async def test_content_language_v2(self, client):
async with client:
with pytest.raises(ValueError) as e:
await client.begin_recognize_content_from_url(self.form_url_jpg, language="en")
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)
assert "'language' is only available for API version V2_1_PREVIEW and up" in str(e.value)

0 comments on commit 9928714

Please sign in to comment.