exiv2/tests/bugfixes/github/test_issue_743.py
David-Tillmann Schaefer b8bf9cc4fd changes comma in aperture to dot to match the other exif entries
(cherry picked from commit 054bc9068b3c4e83be97e42d1a8c9829c2c83e1b)
2019-11-14 09:18:56 +01:00

20 lines
548 B
Python

# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path
class Issue743NikonSigmaArtLens(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/issues/743
"""
url = "https://github.com/Exiv2/exiv2/issues/743"
filename = path("$data_path/issue_743.exv")
commands = ["$exiv2 -pa --grep lensid/i $filename"]
stderr = [""]
stdout = [""
"""Exif.NikonLd3.LensIDNumber Byte 1 Sigma 24-70mm F2.8 DG OS HSM Art
"""
]
retval = [0]