We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.text
1 parent 284df5a commit 83bd36cCopy full SHA for 83bd36c
1 file changed
tests/test_extract_text.py
@@ -72,7 +72,7 @@ def handler(request: httpx.Request) -> httpx.Response:
72
73
assert seen == {"post": 1}
74
assert isinstance(response, ExtractTextResponse)
75
- assert response.text == "Example extracted text"
+ assert response.full_text == "Example extracted text"
76
assert response.input_id == input_file.id
77
assert response.output_id is None
78
assert response.output_url is None
@@ -164,5 +164,5 @@ def handler(request: httpx.Request) -> httpx.Response:
164
165
166
167
- assert response.text == "Async text"
+ assert response.full_text == "Async text"
168
0 commit comments