summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-15 16:37:27 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-15 16:37:27 +0000
commitdbaabbb58dd032c5d76cf727412c75f575172c2e (patch)
treebe6262ef47100ddba09068a1cb7f637484362387
parent248cc01eeed652cc019271594375e8e1c2049633 (diff)
downloadredmine-dbaabbb58dd032c5d76cf727412c75f575172c2e.tar.gz
redmine-dbaabbb58dd032c5d76cf727412c75f575172c2e.zip
remove spaces inside {} of ApplicationHelperTest#test_allowed_html_tags
git-svn-id: http://svn.redmine.org/redmine/trunk@19909 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/helpers/application_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb
index 6c711c216..235db1a37 100644
--- a/test/helpers/application_helper_test.rb
+++ b/test/helpers/application_helper_test.rb
@@ -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