Don't suppress error message from config_notfound

Since it showed up in s390x bionic
This commit is contained in:
James R. Barlow 2018-04-25 21:58:18 -07:00
parent 11cd6201d9
commit 0934905493

View File

@ -718,7 +718,7 @@ def test_tesseract_config_notfound(renderer, resources, outdir):
'--pdf-renderer', renderer,
'--tesseract-config', cfg_file)
assert "Can't open" in err, "No error message about missing config file"
assert p.returncode == ExitCode.ok
assert p.returncode == ExitCode.ok, err
@pytest.mark.parametrize('renderer', RENDERERS)