1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

remove spaces inside {} of ApplicationHelperTest#test_allowed_html_tags

git-svn-id: http://svn.redmine.org/redmine/trunk@19909 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-07-15 16:37:27 +00:00
parent 248cc01eee
commit dbaabbb58d

View File

@ -1148,7 +1148,7 @@ class ApplicationHelperTest < Redmine::HelperTest
"<notextile>no *textile* formatting</notextile>" => "no *textile* formatting",
"<notextile>this is <tag>a tag</tag></notextile>" => "this is &lt;tag&gt;a tag&lt;/tag&gt;"
}
to_test.each { |text, result| assert_equal result, textilizable(text) }
to_test.each {|text, result| assert_equal result, textilizable(text)}
end
def test_pre_tags