aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/pleroma/formatter_test.exs7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/pleroma/formatter_test.exs b/test/pleroma/formatter_test.exs
index ceedd1b6d..5781a3f01 100644
--- a/test/pleroma/formatter_test.exs
+++ b/test/pleroma/formatter_test.exs
@@ -307,11 +307,4 @@ defmodule Pleroma.FormatterTest do
assert Formatter.html_escape(text, "text/plain") == expected
end
-
- test "it minifies html" do
- text = "<p>\nhello</p>\n<p>\nworld</p>\n"
- expected = "<p>hello</p><p>world</p>"
-
- assert Formatter.minify(text, "text/html") == expected
- end
end