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:
Emily 2024-08-04 00:32:50 +01:00
parent df129c7ba3
commit eeaa83398b

View File

@ -746,7 +746,8 @@ def test_pipe():
def test__probe():
data = ffmpeg.probe(TEST_INPUT_FILE1)
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')