Skip to content

Commit 6e0c713

Browse files
committed
Fix standardrb lint failures
1 parent ab42ccc commit 6e0c713

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

spec/system/case_contacts/additional_expenses_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
expect(page).to have_field(class: "expense-amount-input", count: 2)
8484

8585
click_on "Submit"
86-
expect(page).to have_text('Case contact successfully created.')
86+
expect(page).to have_text("Case contact successfully created.")
8787
}
8888
.to change(CaseContact.active, :count).by(1)
8989
.and change(AdditionalExpense, :count).by(2)

spec/system/case_contacts/contact_topic_answers_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ def notes_section
140140
fill_in "Additional Notes", with: "This is a fake a topic answer."
141141

142142
expect do
143-
click_on "Submit";
143+
click_on "Submit"
144144
# Force wait for capybara round trip before asserting the database was updated
145-
expect(page).to have_text 'successfully created'
145+
expect(page).to have_text "successfully created"
146146
end.to change(CaseContact.active, :count).by(1)
147147

148148
contact = CaseContact.active.last

spec/system/case_groups/case_groups_spec.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
# Wait for capybara to follow the redirect before asserting anything else
3232
expect(page).to have_current_path(case_groups_path)
3333
expect(page).to have_text("Another family")
34-
3534
end
3635

3736
it "remove from a case group" do

0 commit comments

Comments
 (0)