Skip to content

Commit

Permalink
fixed some lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
trca831 committed Jan 11, 2025
1 parent 562fd87 commit b3a680d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions spec/jobs/recurring_availability_job_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
before do
# Create a recurring availability rule
@recurring_availability = create(
:recurring_availability,
start_time: "09:00",
end_time: "10:00",
:recurring_availability,
start_time: "09:00",
end_time: "10:00",
speaker_id: 1,
recurs_on: ->(date) { date.wday == 1 } # Recur every Monday
)
Expand All @@ -34,4 +34,5 @@
}.not_to change(Availability, :count)
end
end

end

0 comments on commit b3a680d

Please sign in to comment.