remove spaces inside {} of ApplicationHelperTest#test_text_formatting

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

View File

@@ -1278,7 +1278,7 @@ class ApplicationHelperTest < Redmine::HelperTest
'a H *umane* W *eb* T *ext* G *enerator*' => 'a H <strong>umane</strong> W <strong>eb</strong> T <strong>ext</strong> G <strong>enerator</strong>',
'a *H* umane *W* eb *T* ext *G* enerator' => 'a <strong>H</strong> umane <strong>W</strong> eb <strong>T</strong> ext <strong>G</strong> enerator',
}
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
to_test.each {|text, result| assert_equal "<p>#{result}</p>", textilizable(text)}
end
def test_wiki_horizontal_rule