Ticket #11833: fixfiltertestconflict.patch
File fixfiltertestconflict.patch, 936 bytes (added by , 15 years ago) |
---|
-
tests/regressiontests/templates/filters.py
196 196 'filter-force-escape05': ('{% autoescape off %}{{ a|force_escape|escape }}{% endautoescape %}', {"a": "x&y"}, u"x&y"), 197 197 'filter-force-escape06': ('{{ a|force_escape|escape }}', {"a": "x&y"}, u"x&y"), 198 198 'filter-force-escape07': ('{% autoescape off %}{{ a|escape|force_escape }}{% endautoescape %}', {"a": "x&y"}, u"x&y"), 199 'filter-force-escape0 7': ('{{ a|escape|force_escape }}', {"a": "x&y"}, u"x&y"),199 'filter-force-escape08': ('{{ a|escape|force_escape }}', {"a": "x&y"}, u"x&y"), 200 200 201 201 # The contents in "linebreaks" and "linebreaksbr" are escaped 202 202 # according to the current autoescape setting.