mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-03 11:35:52 +03:00
add extra variable so linter doesn't split line
This commit is contained in:
parent
f5c47ebe12
commit
52ed578947
|
@ -88,9 +88,8 @@ def test_parsing():
|
||||||
b"D:20180729214124+08'00'": "20180729134124",
|
b"D:20180729214124+08'00'": "20180729134124",
|
||||||
b"D:20180729214124-05'00'": "20180730024124",
|
b"D:20180729214124-05'00'": "20180730024124",
|
||||||
}.items():
|
}.items():
|
||||||
d = PdfParser.get_value(b"<</" + name.encode() + b" (" + date + b")>>", 0)[
|
b = b"<</" + name.encode() + b" (" + date + b")>>"
|
||||||
0
|
d = PdfParser.get_value(b, 0)[0]
|
||||||
]
|
|
||||||
assert time.strftime("%Y%m%d%H%M%S", getattr(d, name)) == value
|
assert time.strftime("%Y%m%d%H%M%S", getattr(d, name)) == value
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user