mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-02 04:12:20 +00:00
Removed misleading test
This wasn't really testing what I wanted it to.
This commit is contained in:
parent
13376f8970
commit
70beb24d95
1 changed files with 0 additions and 6 deletions
|
@ -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 > and <"""
|
||||
input_text = "<dev>hi</div>"
|
||||
output = clean(input_text)
|
||||
self.assertEqual("hi", output)
|
||||
|
|
Loading…
Reference in a new issue