From cb7d01219bb5acbecdd94e7ff107de94b3c9b853 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 30 Nov 2020 15:48:59 +0000 Subject: [PATCH] shorten long line of test/integration/attachments_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20525 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/attachments_test.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/integration/attachments_test.rb b/test/integration/attachments_test.rb index 8b819cbbd..1f3ffbba3 100644 --- a/test/integration/attachments_test.rb +++ b/test/integration/attachments_test.rb @@ -197,8 +197,11 @@ class AttachmentsTest < Redmine::IntegrationTest attachment = Attachment.order('id DESC').first attachment_path = "/attachments/#{attachment.id}.js?attachment_id=1" - assert_include "href: '#{attachment_path}'", response.body, "Path to attachment: #{attachment_path} not found in response:\n#{response.body}" - + assert_include( + "href: '#{attachment_path}'", + response.body, + "Path to attachment: #{attachment_path} not found in response:\n#{response.body}" + ) assert_difference 'Attachment.count', -1 do delete attachment_path assert_response :success -- 2.39.5