aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2021-04-30 12:27:06 -0500
committerAlex Gleason <alex@alexgleason.me>2021-04-30 12:27:06 -0500
commit6727a3659f60c0e09fa6375b6c0843c01f5be3dc (patch)
tree2b007d0eff57a86073909a2449ae5e29a6a14379 /test
parent004bcedb074d50bc42803e4c0a884239bd504b3d (diff)
downloadpleroma-6727a3659f60c0e09fa6375b6c0843c01f5be3dc.tar.gz
Remove Pleroma.Formatter.minify/2
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