diff options
| author | Tim Graham <timograham@gmail.com> | 2017-03-04 09:04:16 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-03-04 09:04:40 -0500 |
| commit | 6392bf26caa1ad4675152491bb2e19896e1d41c5 (patch) | |
| tree | b3954071f1800526a468ad565de04bcf97837d24 /tests/utils_tests | |
| parent | 1f20326db0ff2d5d741d0bc8dc4a8b13c97a3652 (diff) | |
[1.11.x] Fixed #27900 -- Made escapejs escape backticks for use in ES6 template literals.
Backport of 6ae1b04fb584db0fdb22b8e287784c4ed3ac62ac from master
Diffstat (limited to 'tests/utils_tests')
| -rw-r--r-- | tests/utils_tests/test_html.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils_tests/test_html.py b/tests/utils_tests/test_html.py index 39d590032f..7982f4fe42 100644 --- a/tests/utils_tests/test_html.py +++ b/tests/utils_tests/test_html.py @@ -142,6 +142,7 @@ class TestUtilsHtml(SimpleTestCase): 'paragraph separator:\u2029and line separator:\u2028', 'paragraph separator:\\u2029and line separator:\\u2028' ), + ('`', '\\u0060'), ) for value, output in items: self.check_output(f, value, output) |
