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.
1 parent 2fff94a commit 87a168aCopy full SHA for 87a168a
ffmpeg/tests/test_ffmpeg.py
@@ -365,5 +365,5 @@ def test_ffprobe():
365
def test_ffprobe_exception():
366
with pytest.raises(ffmpeg.ProbeException) as excinfo:
367
ffmpeg.probe(BOGUS_INPUT_FILE)
368
- assert excinfo.value.message == 'ffprobe error'
+ assert str(excinfo.value) == 'ffprobe error'
369
assert 'No such file or directory' in excinfo.value.stderr_output
0 commit comments