summaryrefslogtreecommitdiff
path: root/tests/timezones/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/timezones/tests.py')
-rw-r--r--tests/timezones/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/timezones/tests.py b/tests/timezones/tests.py
index 91c8f9f451..67bac731f7 100644
--- a/tests/timezones/tests.py
+++ b/tests/timezones/tests.py
@@ -1081,11 +1081,6 @@ class NewFormsTests(TestCase):
self.assertTrue(form.is_valid())
self.assertEqual(form.cleaned_data['dt'], datetime.datetime(2011, 9, 1, 10, 20, 30, tzinfo=UTC))
- def test_form_with_explicit_timezone(self):
- form = EventForm({'dt': '2011-09-01 17:20:30+07:00'})
- # Datetime inputs formats don't allow providing a time zone.
- self.assertFalse(form.is_valid())
-
def test_form_with_non_existent_time(self):
with timezone.override(pytz.timezone('Europe/Paris')):
form = EventForm({'dt': '2011-03-27 02:30:00'})