Apply Layout/SpaceAfterComma rubocop rule

This commit is contained in:
Javi Martín
2019-10-22 18:48:22 +02:00
parent 38b7307450
commit 4699e767ec

View File

@@ -930,7 +930,7 @@ describe "Budget Investments" do
scenario "Edit", :js do
daniel = create(:user, :level_two)
create(:budget_investment, heading: heading,title: "Get Schwifty", author: daniel, created_at: 1.day.ago)
create(:budget_investment, heading: heading, title: "Get Schwifty", author: daniel, created_at: 1.day.ago)
login_as(daniel)
@@ -949,7 +949,7 @@ describe "Budget Investments" do
scenario "Trigger validation errors in edit view" do
daniel = create(:user, :level_two)
message_error = "is too short (minimum is 4 characters), can't be blank"
create(:budget_investment, heading: heading,title: "Get SH", author: daniel, created_at: 1.day.ago)
create(:budget_investment, heading: heading, title: "Get SH", author: daniel, created_at: 1.day.ago)
login_as(daniel)