We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6084cd1 commit 673fa94Copy full SHA for 673fa94
vision/cloud-client/detect/detect_test.py
@@ -165,17 +165,15 @@ def test_detect_web_with_geo(capsys):
165
detect.web_entities_include_geo_results(file_name)
166
out, _ = capsys.readouterr()
167
out = out.lower()
168
- assert ('zepra' in out or 'electra tower' in out or 'tel aviv' in out or
169
- 'jaffa' in out)
+ assert 'description' in out
170
171
172
def test_detect_web_with_geo_uri(capsys):
173
file_name = 'gs://{}/vision/web/city.jpg'.format(ASSET_BUCKET)
174
detect.web_entities_include_geo_results_uri(file_name)
175
176
177
178
179
180
181
def test_detect_document(capsys):
0 commit comments