Skip to content

Commit

Permalink
fix rubocop errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgarciao committed Feb 4, 2024
1 parent 06e9d27 commit d87b636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/controllers/events_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
describe "#index" do
context "events page" do
it "lists the events, ordered by start asc in UTC" do
index = Event.count # index of first test to be created
index = Event.count # index of first test to be created
event2 = FactoryBot.create(:event, start: Time.now - 3.months, finish: Time.now - 3.months + 180, error: nil, success: true)
event3 = FactoryBot.create(:event, start: Time.now - 2.months, finish: Time.now - 2.months + 180, error: nil, success: true)
event1 = FactoryBot.create(:event)
Expand Down

0 comments on commit d87b636

Please sign in to comment.