Skip to content

Commit b7e246b

Browse files
committed
Fix Linting Errors
1 parent 2221097 commit b7e246b

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

spec/requests/adjustments_requests_spec.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@
7777
expect(response).to be_successful
7878
expect(response.body).to include("The date range you supplied was invalid")
7979
end
80-
8180
end
8281

8382
context "csv" do

spec/requests/events_requests_spec.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,12 @@
214214

215215
it "falls back to default date range and renders without error when given an invalid date_range param" do
216216
get events_path(format: :html, params: {
217-
filters: { date_range: "Foo 10, 2025 - Bar 20, 2025" }
217+
filters: {date_range: "Foo 10, 2025 - Bar 20, 2025"}
218218
})
219219

220220
expect(response).to be_successful
221221
expect(response.body).to include("The date range you supplied was invalid")
222222
end
223-
224223
end
225224

226225
context "with eventable_id" do

0 commit comments

Comments
 (0)