Do not use Exception.message, use str(Exception) instead

This commit is contained in:
Davide Depau 2018-03-08 22:52:06 +01:00
parent 2fff94af6c
commit 87a168a063
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86

View File

@ -365,5 +365,5 @@ def test_ffprobe():
def test_ffprobe_exception(): def test_ffprobe_exception():
with pytest.raises(ffmpeg.ProbeException) as excinfo: with pytest.raises(ffmpeg.ProbeException) as excinfo:
ffmpeg.probe(BOGUS_INPUT_FILE) 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 assert 'No such file or directory' in excinfo.value.stderr_output