mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Fix test__probe
on FFmpeg 7
We now get the (more precise?) result 7.035646, so make the check less exact.
This commit is contained in:
parent
df129c7ba3
commit
eeaa83398b
@ -746,7 +746,8 @@ def test_pipe():
|
|||||||
def test__probe():
|
def test__probe():
|
||||||
data = ffmpeg.probe(TEST_INPUT_FILE1)
|
data = ffmpeg.probe(TEST_INPUT_FILE1)
|
||||||
assert set(data.keys()) == {'format', 'streams'}
|
assert set(data.keys()) == {'format', 'streams'}
|
||||||
assert data['format']['duration'] == '7.036000'
|
assert data['format']['duration'][:4] == '7.03'
|
||||||
|
assert len(data['format']['duration']) == 8
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(sys.version_info < (3, 3), reason='requires python3.3 or higher')
|
@pytest.mark.skipif(sys.version_info < (3, 3), reason='requires python3.3 or higher')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user