diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-03-20 13:44:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-20 13:44:30 +0100 |
| commit | c9888bc8ecb8943ef08090e3325dcbdac825eafc (patch) | |
| tree | aacaa43e2a563e944ecd2e4f583d4f3460f6233e | |
| parent | 418263c457636d3301f2068c47f09a0f42e15c52 (diff) | |
Fixed #30264 -- Fixed crash of test_parsing_year_less_than_70() on 32-bit systems.
Thanks Andreas Beckmann and Chris Lamb for the report.
| -rw-r--r-- | tests/utils_tests/test_http.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils_tests/test_http.py b/tests/utils_tests/test_http.py index 05628431c3..ec934fd2e4 100644 --- a/tests/utils_tests/test_http.py +++ b/tests/utils_tests/test_http.py @@ -293,8 +293,8 @@ class HttpDateProcessingTests(unittest.TestCase): self.assertEqual(datetime.utcfromtimestamp(parsed), datetime(1994, 11, 6, 8, 49, 37)) def test_parsing_year_less_than_70(self): - parsed = parse_http_date('Sun Nov 6 08:49:37 0050') - self.assertEqual(datetime.utcfromtimestamp(parsed), datetime(2050, 11, 6, 8, 49, 37)) + parsed = parse_http_date('Sun Nov 6 08:49:37 0037') + self.assertEqual(datetime.utcfromtimestamp(parsed), datetime(2037, 11, 6, 8, 49, 37)) class EscapeLeadingSlashesTests(unittest.TestCase): |
