From cf4e036bdeecef85a7cf9ad52ef83433f06f442e Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Sat, 29 Nov 2025 19:17:50 -0500 Subject: [6.0.x] Refs #35535 -- Used intended decorator in test_simple_block_tag_parens(). Backport of e94b19f6abdda70689aa17e399ce5fdef7897674 from main. --- tests/template_tests/test_library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/template_tests/test_library.py b/tests/template_tests/test_library.py index 98e9d228aa..5827d33223 100644 --- a/tests/template_tests/test_library.py +++ b/tests/template_tests/test_library.py @@ -132,7 +132,7 @@ class SimpleBlockTagRegistrationTests(SimpleTestCase): self.assertIn("func", self.library.tags) def test_simple_block_tag_parens(self): - @self.library.simple_tag() + @self.library.simple_block_tag() def func(content): return content -- cgit v1.3