Removed misleading test

This wasn't really testing what I wanted it to.
This commit is contained in:
Mouse Reeve 2022-07-04 13:34:09 -07:00
parent 13376f8970
commit 70beb24d95

View file

@ -46,9 +46,3 @@ class Sanitizer(TestCase):
input_text = "<div> yes <i>html</i></div>"
output = clean(input_text)
self.assertEqual(" yes <i>html</i>", output)
def test_escaped_bracket(self):
"""remove &gt; and &lt;"""
input_text = "&lt;dev&gt;hi&lt;/div&gt;"
output = clean(input_text)
self.assertEqual("hi", output)