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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user