Fix string type inconsistency error in ffprobe test

This commit is contained in:
Davide Depau 2018-03-08 23:02:04 +01:00
parent 87a168a063
commit 4927bbeea9
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86

View File

@ -366,4 +366,4 @@ def test_ffprobe_exception():
with pytest.raises(ffmpeg.ProbeException) as excinfo:
ffmpeg.probe(BOGUS_INPUT_FILE)
assert str(excinfo.value) == 'ffprobe error'
assert 'No such file or directory' in excinfo.value.stderr_output
assert b'No such file or directory' in excinfo.value.stderr_output