diff --git a/vision/cloud-client/web/web_detect_test.py b/vision/cloud-client/web/web_detect_test.py index 20311748c28..b001f78f573 100644 --- a/vision/cloud-client/web/web_detect_test.py +++ b/vision/cloud-client/web/web_detect_test.py @@ -21,9 +21,7 @@ def test_detect_file(capsys): file_name = ('../detect/resources/landmark.jpg') web_detect.report(web_detect.annotate(file_name)) out, _ = capsys.readouterr() - print(out) assert 'description' in out.lower() - assert 'palace' in out.lower() def test_detect_web_gsuri(capsys): @@ -32,7 +30,6 @@ def test_detect_web_gsuri(capsys): web_detect.report(web_detect.annotate(file_name)) out, _ = capsys.readouterr() assert 'description:' in out.lower() - assert 'palace' in out.lower() def test_detect_web_http(capsys):