Fix rubocop nits

This commit is contained in:
Andreas Nedbal 2023-10-16 15:32:48 +02:00 committed by Andreas Nedbal
parent af3caf9be1
commit 5f0fed8c94
2 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ module SocialHelper
id: answer.id,
username: answer.user.screen_name,
host: APP_CONFIG["hostname"],
protocol: (APP_CONFIG["https"] ? :https : :http)
protocol: (APP_CONFIG["https"] ? :https : :http),
)
end
end

View File

@ -9,7 +9,7 @@ describe SocialHelper, type: :helper do
:answer,
user:,
content: "this is an answer\nwith multiple lines\nand **FORMATTING**",
question_content: "this is a question .... or is it?"
question_content: "this is a question .... or is it?",
)
end
@ -18,7 +18,8 @@ describe SocialHelper, type: :helper do
"hostname" => "example.com",
"https" => true,
"items_per_page" => 5,
})
},
)
end
describe "#answer_share_url" do