summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.rubocop_todo.yml1
-rw-r--r--test/helpers/application_helper_test.rb2
2 files changed, 1 insertions, 2 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index 0ac19656f..38b0738e2 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -286,7 +286,6 @@ Layout/IndentHeredoc:
# SupportedStyles: normal, indented_internal_methods
Layout/IndentationConsistency:
Exclude:
- - 'test/helpers/application_helper_test.rb'
- 'test/integration/api_test/custom_fields_attribute_test.rb'
- 'test/mocks/open_id_authentication_mock.rb'
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb
index 552eb210f..fe95872b8 100644
--- a/test/helpers/application_helper_test.rb
+++ b/test/helpers/application_helper_test.rb
@@ -185,7 +185,7 @@ RAW
def test_attached_images_with_hires_naming
attachment = Attachment.generate!(:filename => 'image@2x.png')
- assert_equal %(<p><img src="/attachments/download/#{attachment.id}/image@2x.png" srcset="/attachments/download/#{attachment.id}/image@2x.png 2x" alt="" /></p>),
+ assert_equal %(<p><img src="/attachments/download/#{attachment.id}/image@2x.png" srcset="/attachments/download/#{attachment.id}/image@2x.png 2x" alt="" /></p>),
textilizable("!image@2x.png!", :attachments => [attachment])
end