We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 265ddc8 commit be34b49Copy full SHA for be34b49
samples/snippets/detect/detect_test.py
@@ -222,14 +222,14 @@ def test_detect_web_with_geo(capsys):
222
'resources/city.jpg')
223
detect.web_entities_include_geo_results(file_name)
224
out, _ = capsys.readouterr()
225
- assert 'Zepra' in out
+ assert 'Zepra' in out or 'Electra Tower' in out
226
227
228
def test_detect_web_with_geo_uri(capsys):
229
file_name = 'gs://{}/vision/city.jpg'.format(BUCKET)
230
detect.web_entities_include_geo_results_uri(file_name)
231
232
233
234
235
def test_detect_document(capsys):
0 commit comments