From 96010ae15bc2ce6b6a73a224da04fde94242a10d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 10 Sep 2014 12:26:15 -0400 Subject: [PATCH] Corrected indentation in a contrib.humanize test; refs #23340. Thanks Zach Borboa for the report. --- django/contrib/humanize/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/humanize/tests.py b/django/contrib/humanize/tests.py index dd1505c988..a9882e479f 100644 --- a/django/contrib/humanize/tests.py +++ b/django/contrib/humanize/tests.py @@ -283,6 +283,6 @@ class HumanizeTests(TestCase): for test_time_string, expected_natural_time in test_data: test_time = datetime.datetime.strptime(test_time_string, time_format) natural_time = humanize.naturaltime(test_time).replace('\xa0', ' ') - self.assertEqual(expected_natural_time, natural_time) + self.assertEqual(expected_natural_time, natural_time) finally: humanize.datetime = orig_humanize_datetime