From 961bdce5fa8acb13cf36029a9be8bb7146dd2431 Mon Sep 17 00:00:00 2001 From: Adeel Khan Date: Mon, 12 Feb 2018 16:49:47 +0500 Subject: [PATCH] Fix xss-linter.py failing test. --- scripts/tests/test_xss_linter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tests/test_xss_linter.py b/scripts/tests/test_xss_linter.py index 40dd94c802..0a1a558592 100644 --- a/scripts/tests/test_xss_linter.py +++ b/scripts/tests/test_xss_linter.py @@ -601,6 +601,7 @@ class TestMakoTemplateLinter(TestLinter): results = FileResults('') mako_template = textwrap.dedent(""" + <%page expression_filter="h"/> ${x | n, strip_all_tags_but_br} """)