Skip to content

Commit f0005f0

Browse files
committed
linting fixes
1 parent 4886255 commit f0005f0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

spec/requests/volunteers_spec.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@
253253
expect(volunteer.email).to eq(new_email)
254254
expect(volunteer.old_emails).to eq([old_email])
255255
expect(volunteer.unconfirmed_email).to eq(nil)
256-
257256
end
258257
end
259258

spec/system/volunteers/edit_spec.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
describe "updating a volunteer's email" do
131131
context "with a valid email" do
132132
it "updates volunteer email without sending a confirmaiton email" do
133-
organization =create(:casa_org)
133+
organization = create(:casa_org)
134134
admin = create(:casa_admin, casa_org: organization)
135135
volunteer = create(:volunteer, :with_assigned_supervisor, casa_org: organization)
136136

@@ -150,7 +150,6 @@
150150
expect(volunteer.email).to eq(new_email)
151151
expect(volunteer.old_emails).to eq([old_email])
152152
expect(volunteer.unconfirmed_email).to eq(nil)
153-
154153
end
155154
end
156155
end

0 commit comments

Comments
 (0)