Remove duplicate expectations in executions test

We were checking the same thing twice.
This commit is contained in:
Javi Martín
2025-03-16 20:57:33 +01:00
parent bdc53ffe02
commit 7870952dff

View File

@@ -18,12 +18,6 @@ describe "Executions" do
visit budget_executions_path(budget)
within(".budgets-stats") { expect(page).to have_content budget.name }
visit budget_executions_path("budget_slug")
within(".budgets-stats") { expect(page).to have_content budget.name }
visit budget_executions_path(budget)
within(".budgets-stats") { expect(page).to have_content budget.name }
end
scenario "only displays investments with milestones" do