8000 Fix string type inconsistency error in ffprobe test · monir-dev/ffmpeg-python@4927bbe · GitHub
[go: up one dir, main page]

Skip to content

Commit 4927bbe

Browse files
committed
Fix string type inconsistency error in ffprobe test
1 parent 87a168a commit 4927bbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg/tests/test_ffmpeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,4 @@ def test_ffprobe_exception():
366366
with pytest.raises(ffmpeg.ProbeException) as excinfo:
367367
ffmpeg.probe(BOGUS_INPUT_FILE)
368368
assert str(excinfo.value) == 'ffprobe error'
369-
assert 'No such file or directory' in excinfo.value.stderr_output
369+
assert b'No such file or directory' in excinfo.value.stderr_output

0 commit comments

Comments
 (0)
0