Ticket #11833: fixfiltertestconflict.patch

File fixfiltertestconflict.patch, 936 bytes (added by Stephen Kelly, 15 years ago)

Patch to fix name conflict

  • tests/regressiontests/templates/filters.py

     
    196196        'filter-force-escape05': ('{% autoescape off %}{{ a|force_escape|escape }}{% endautoescape %}', {"a": "x&y"}, u"x&y"),
    197197        'filter-force-escape06': ('{{ a|force_escape|escape }}', {"a": "x&y"}, u"x&y"),
    198198        'filter-force-escape07': ('{% autoescape off %}{{ a|escape|force_escape }}{% endautoescape %}', {"a": "x&y"}, u"x&y"),
    199         'filter-force-escape07': ('{{ a|escape|force_escape }}', {"a": "x&y"}, u"x&y"),
     199        'filter-force-escape08': ('{{ a|escape|force_escape }}', {"a": "x&y"}, u"x&y"),
    200200
    201201        # The contents in "linebreaks" and "linebreaksbr" are escaped
    202202        # according to the current autoescape setting.
Back to Top