From b2cd8771f33a0d0354c50b9b4ddedf254195f783 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 22 Oct 2019 11:40:00 +0000 Subject: [PATCH] code cleanup: rubocop: fix Layout/ClosingHeredocIndentation in ApplicationHelperTest#test_inline_images_inside_tags git-svn-id: http://svn.redmine.org/redmine/trunk@18803 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/helpers/application_helper_test.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 316137a78..5f9c718ef 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -130,14 +130,13 @@ class ApplicationHelperTest < Redmine::HelperTest end def test_inline_images_inside_tags - raw = <<-RAW -h1. !foo.png! Heading + raw = <<~RAW + h1. !foo.png! Heading -Centered image: - -p=. !bar.gif! -RAW + Centered image: + p=. !bar.gif! + RAW assert textilizable(raw).include?('') assert textilizable(raw).include?('') end