remove unnecessary new lines in the test

resolves https://github.com/opf/openproject/pull/19449#discussion_r2195651639
This commit is contained in:
as-op
2025-07-10 10:38:56 +02:00
parent 81efe18f33
commit 3ff02731bd
@@ -125,7 +125,7 @@ RSpec.describe WorkPackage::PDFExport::Common::Macro do
end
describe "with markdown formating bold" do
let(:markdown) { "\n**##{work_package.id}**\n" }
let(:markdown) { "**##{work_package.id}**" }
it "contains correct data" do
expect(formatted).to eq("**#{expected_tag}**")