From 42b9a23267f14be39b9b00958e18d5746783208e Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Thu, 27 Jun 2019 09:39:47 -0700 Subject: Fixed #30400 -- Improved typography of user facing strings. Thanks Claude Paroz for assistance with translations. --- tests/timezones/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/timezones') 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.' ] ) -- cgit v1.3