1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #36519 -- Made center template filter consistent for even/odd padding.

Refactored `center` template filter to match f-string behaviour,
producing consistent padding for both odd and even fillings.

Thanks Lily Acorn for the report and Natalia Bidart for the review.

Co-authored-by: Lily Acorn <code@lilyf.org>
This commit is contained in:
mriduldhall
2025-07-25 16:27:20 +01:00
committed by nessita
parent 2d4ca62170
commit d4dd3e503c
3 changed files with 11 additions and 1 deletions

View File

@@ -35,6 +35,12 @@ class FunctionTests(SimpleTestCase):
def test_non_string_input(self):
self.assertEqual(center(123, 5), " 123 ")
def test_odd_input(self):
self.assertEqual(center("odd", 6), " odd ")
def test_even_input(self):
self.assertEqual(center("even", 7), " even ")
def test_widths(self):
value = "something"
for i in range(-1, len(value) + 1):