summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_text.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /tests/utils_tests/test_text.py
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/utils_tests/test_text.py')
-rw-r--r--tests/utils_tests/test_text.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/utils_tests/test_text.py b/tests/utils_tests/test_text.py
index caab19a55d..cb2959fe15 100644
--- a/tests/utils_tests/test_text.py
+++ b/tests/utils_tests/test_text.py
@@ -122,10 +122,12 @@ class TestUtilsText(SimpleTestCase):
def test_truncate_html_words(self):
truncator = text.Truncator(
- '<p id="par"><strong><em>The quick brown fox jumped over the lazy dog.</em></strong></p>'
+ '<p id="par"><strong><em>The quick brown fox jumped over the lazy dog.</em>'
+ "</strong></p>"
)
self.assertEqual(
- '<p id="par"><strong><em>The quick brown fox jumped over the lazy dog.</em></strong></p>',
+ '<p id="par"><strong><em>The quick brown fox jumped over the lazy dog.</em>'
+ "</strong></p>",
truncator.words(10, html=True),
)
self.assertEqual(
@@ -143,7 +145,8 @@ class TestUtilsText(SimpleTestCase):
# Test with new line inside tag
truncator = text.Truncator(
- '<p>The quick <a href="xyz.html"\n id="mylink">brown fox</a> jumped over the lazy dog.</p>'
+ '<p>The quick <a href="xyz.html"\n id="mylink">brown fox</a> jumped over '
+ "the lazy dog.</p>"
)
self.assertEqual(
'<p>The quick <a href="xyz.html"\n id="mylink">brown…</a></p>',