diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-15 16:37:19 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-15 16:37:19 +0000 |
commit | 248cc01eeed652cc019271594375e8e1c2049633 (patch) | |
tree | 6d64066a1e3ca14f1e6328e5438830cee2fcb5b2 /test/helpers/application_helper_test.rb | |
parent | 887e8ca97180392f92f8bd454beae58d01fbcc0a (diff) | |
download | redmine-248cc01eeed652cc019271594375e8e1c2049633.tar.gz redmine-248cc01eeed652cc019271594375e8e1c2049633.zip |
remove spaces inside {} of ApplicationHelperTest#test_text_formatting
git-svn-id: http://svn.redmine.org/redmine/trunk@19908 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/helpers/application_helper_test.rb')
-rw-r--r-- | test/helpers/application_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 4d522fdc9..6c711c216 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -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 |