1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Fix RuboCop offenses Layout/EmptyLinesAroundClassBody and Layout/TrailingEmptyLines in html_sanitizer_test.rb (#37750).

git-svn-id: https://svn.redmine.org/redmine/trunk@21914 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2022-10-20 07:57:02 +00:00
parent 3fe8a7575d
commit 00b4743e91

View File

@ -20,7 +20,6 @@
require File.expand_path('../../../../../test_helper', __FILE__)
class Redmine::WikiFormatting::HtmlSanitizerTest < ActiveSupport::TestCase
def setup
@sanitizer = Redmine::WikiFormatting::HtmlSanitizer
end
@ -37,4 +36,3 @@ class Redmine::WikiFormatting::HtmlSanitizerTest < ActiveSupport::TestCase
assert_equal "<a>foo</a>", @sanitizer.call(input)
end
end