Skip to content

Commit 06f66b3

Browse files
committed
Correct stable timestamp.
1 parent f7c52b8 commit 06f66b3

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 = (1975, 7, 2, 22, 19, 59)
1815+
expected_utc = (2025, 1, 1, 7, 19, 59)
18161816
self.assertEqual(zip_info.date_time, expected_utc)
18171817

18181818
def test_write_without_source_date_epoch(self):

0 commit comments

Comments
 (0)