mirror of
https://github.com/django/django.git
synced 2025-01-03 06:55:47 +00:00
Refs #27025 -- Fixed a timezone test for Python 3.6.
Reflects behavior changes in PEP 495 (Local Time Disambiguation).
This commit is contained in:
parent
8119b679eb
commit
e43ea36b76
@ -193,6 +193,12 @@ class TimezoneTests(SimpleTestCase):
|
||||
pytz.timezone("Asia/Bangkok").localize(datetime.datetime(2011, 9, 1, 17, 20, 30)), CET
|
||||
),
|
||||
datetime.datetime(2011, 9, 1, 12, 20, 30))
|
||||
if PY36:
|
||||
self.assertEqual(
|
||||
timezone.make_naive(datetime.datetime(2011, 9, 1, 12, 20, 30), CET),
|
||||
datetime.datetime(2011, 9, 1, 19, 20, 30)
|
||||
)
|
||||
else:
|
||||
with self.assertRaises(ValueError):
|
||||
timezone.make_naive(datetime.datetime(2011, 9, 1, 12, 20, 30), CET)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user