summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 09:03:55 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 09:03:55 +0000
commitc37ad515f845c61710adb7c90090665bc88f0c50 (patch)
tree55e2e1d61f5a12ad5d918f535c2c48ddc1df4323
parentdd6adffa8bb93c1b370bbea970467ec3698d1e54 (diff)
downloadredmine-c37ad515f845c61710adb7c90090665bc88f0c50.tar.gz
redmine-c37ad515f845c61710adb7c90090665bc88f0c50.zip
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/wiki_formatting/html_parser_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19187 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--.rubocop_todo.yml1
-rw-r--r--test/unit/lib/redmine/wiki_formatting/html_parser_test.rb13
2 files changed, 9 insertions, 5 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index 13c071e7f..c5e6ad750 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -21,7 +21,6 @@ Layout/AlignArguments:
- 'test/integration/api_test/wiki_pages_test.rb'
- 'test/test_helper.rb'
- 'test/unit/changeset_test.rb'
- - 'test/unit/lib/redmine/wiki_formatting/html_parser_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb'
diff --git a/test/unit/lib/redmine/wiki_formatting/html_parser_test.rb b/test/unit/lib/redmine/wiki_formatting/html_parser_test.rb
index 3b243e747..72f3eac09 100644
--- a/test/unit/lib/redmine/wiki_formatting/html_parser_test.rb
+++ b/test/unit/lib/redmine/wiki_formatting/html_parser_test.rb
@@ -25,13 +25,17 @@ class Redmine::WikiFormatting::HtmlParserTest < ActiveSupport::TestCase
end
def test_convert_line_breaks
- assert_equal "A html snippet with\na new line.",
+ assert_equal(
+ "A html snippet with\na new line.",
@parser.to_text('<p>A html snippet with<br>a new line.</p>')
+ )
end
def test_should_remove_style_tags_from_body
- assert_equal "Text",
+ assert_equal(
+ "Text",
@parser.to_text('<html><body><style>body {font-size: 0.8em;}</style>Text</body></html>')
+ )
end
def test_should_remove_preceding_whitespaces
@@ -59,8 +63,9 @@ class Redmine::WikiFormatting::HtmlParserTest < ActiveSupport::TestCase
</tr>
</table>
HTML
-
- assert_equal "th1\n\nth2\n\ntd1\n\ntd2",
+ assert_equal(
+ "th1\n\nth2\n\ntd1\n\ntd2",
@parser.to_text(str)
+ )
end
end