Remove unused variables

This commit is contained in:
Javi Martín
2021-03-27 17:53:56 +01:00
parent 5ab1ed57ea
commit 5612ada2d4

View File

@@ -77,12 +77,13 @@ describe "Proposal Notifications" do
scenario "Show notifications" do scenario "Show notifications" do
proposal = create(:proposal) proposal = create(:proposal)
_notification1 = create(:proposal_notification,
proposal: proposal, title: "Hey guys", create(:proposal_notification,
body: "Just wanted to let you know that...") proposal: proposal, title: "Hey guys",
_notification2 = create(:proposal_notification, body: "Just wanted to let you know that...")
proposal: proposal, title: "Another update", create(:proposal_notification,
body: "We are almost there please share with your peoples!") proposal: proposal, title: "Another update",
body: "We are almost there please share with your peoples!")
visit proposal_path(proposal) visit proposal_path(proposal)