mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Do not use Exception.message, use str(Exception) instead
This commit is contained in:
parent
2fff94af6c
commit
87a168a063
@ -365,5 +365,5 @@ def test_ffprobe():
|
||||
def test_ffprobe_exception():
|
||||
with pytest.raises(ffmpeg.ProbeException) as excinfo:
|
||||
ffmpeg.probe(BOGUS_INPUT_FILE)
|
||||
assert excinfo.value.message == 'ffprobe error'
|
||||
assert str(excinfo.value) == 'ffprobe error'
|
||||
assert 'No such file or directory' in excinfo.value.stderr_output
|
||||
|
Loading…
x
Reference in New Issue
Block a user