Skip to content

Commit 5c09422

Browse files
committed
Seems a second gets lost during the zip file creation.
1 parent 06f66b3 commit 5c09422

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_zipfile/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ def test_write_with_source_date_epoch(self):
18121812

18131813
with zipfile.ZipFile(TESTFN, "r") as zf:
18141814
zip_info = zf.getinfo("test_source_date_epoch.txt")
1815-
expected_utc = (2025, 1, 1, 7, 19, 59)
1815+
expected_utc = (2025, 1, 1, 7, 19, 58)
18161816
self.assertEqual(zip_info.date_time, expected_utc)
18171817

18181818
def test_write_without_source_date_epoch(self):

0 commit comments

Comments
 (0)