diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-05-23 14:00:17 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-05-23 14:01:27 +0200 |
| commit | b664cb818d2e5896df2763299ea2c61a9af069a8 (patch) | |
| tree | 008713cc92b26d6470b2465b0744aabd359644b3 /tests/utils_tests | |
| parent | 8c2fd050f80f528cc1609c1a7f16901194834831 (diff) | |
Fixed #19237 (again) - Made strip_tags consistent between Python versions
Diffstat (limited to 'tests/utils_tests')
| -rw-r--r-- | tests/utils_tests/test_html.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/utils_tests/test_html.py b/tests/utils_tests/test_html.py index c3e9f7c878..b973f1c64f 100644 --- a/tests/utils_tests/test_html.py +++ b/tests/utils_tests/test_html.py @@ -70,6 +70,9 @@ class TestUtilsHtml(TestCase): ('</adf>a', 'a'), ('<asdf><asdf>e', 'e'), ('hi, <f x', 'hi, <f x'), + ('234<235, right?', '234<235, right?'), + ('a4<a5 right?', 'a4<a5 right?'), + ('b7>b2!', 'b7>b2!'), ('</fe', '</fe'), ('<x>b<y>', 'b'), ('a<p onclick="alert(\'<test>\')">b</p>c', 'abc'), |
