diff options
Diffstat (limited to 'tests/timezones/tests.py')
| -rw-r--r-- | tests/timezones/tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/timezones/tests.py b/tests/timezones/tests.py index d51f1cabeb..68c7e3a7ef 100644 --- a/tests/timezones/tests.py +++ b/tests/timezones/tests.py @@ -1103,8 +1103,8 @@ class NewFormsTests(TestCase): self.assertFalse(form.is_valid()) self.assertEqual( form.errors['dt'], [ - "2011-03-27 02:30:00 couldn't be interpreted in time zone " - "Europe/Paris; it may be ambiguous or it may not exist." + '2011-03-27 02:30:00 couldn’t be interpreted in time zone ' + 'Europe/Paris; it may be ambiguous or it may not exist.' ] ) @@ -1114,8 +1114,8 @@ class NewFormsTests(TestCase): self.assertFalse(form.is_valid()) self.assertEqual( form.errors['dt'], [ - "2011-10-30 02:30:00 couldn't be interpreted in time zone " - "Europe/Paris; it may be ambiguous or it may not exist." + '2011-10-30 02:30:00 couldn’t be interpreted in time zone ' + 'Europe/Paris; it may be ambiguous or it may not exist.' ] ) |
