From 70beb24d95657d5186d73d71599088046dd5e891 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 4 Jul 2022 13:34:09 -0700 Subject: [PATCH] Removed misleading test This wasn't really testing what I wanted it to. --- bookwyrm/tests/test_sanitize_html.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bookwyrm/tests/test_sanitize_html.py b/bookwyrm/tests/test_sanitize_html.py index ecdd69793..ca1643e8f 100644 --- a/bookwyrm/tests/test_sanitize_html.py +++ b/bookwyrm/tests/test_sanitize_html.py @@ -46,9 +46,3 @@ class Sanitizer(TestCase): input_text = "
yes html
" output = clean(input_text) self.assertEqual(" yes html", output) - - def test_escaped_bracket(self): - """remove > and <""" - input_text = "<dev>hi</div>" - output = clean(input_text) - self.assertEqual("hi", output)