diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-15 16:37:35 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-15 16:37:35 +0000 |
commit | 7512e3cc39b87895d042a0ecd7ef27c48dff3f0a (patch) | |
tree | 55adaa5cee1ba91da8738baaafbdcc7fd0a43e27 | |
parent | dbaabbb58dd032c5d76cf727412c75f575172c2e (diff) | |
download | redmine-7512e3cc39b87895d042a0ecd7ef27c48dff3f0a.tar.gz redmine-7512e3cc39b87895d042a0ecd7ef27c48dff3f0a.zip |
remove spaces inside {} of ApplicationHelperTest#test_html_tags
git-svn-id: http://svn.redmine.org/redmine/trunk@19910 e93f8b46-1217-0410-a6f0-8f06a7374b81
-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 235db1a37..31575c4ac 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -1139,7 +1139,7 @@ class ApplicationHelperTest < Redmine::HelperTest '<pre><code class=""onmouseover="alert(1)">text</code></pre>' => '<pre><code>text</code></pre>', '<pre class=""onmouseover="alert(1)">text</pre>' => '<pre>text</pre>', } - to_test.each { |text, result| assert_equal result, textilizable(text) } + to_test.each {|text, result| assert_equal result, textilizable(text)} end def test_allowed_html_tags |