Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciapaz committed Oct 22, 2024
1 parent 2647a45 commit fc9216d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/models/location.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Location < ActiveRecord::Base
include PgSearch::Model
multisearchable against: [:name]

enum non_standard_office_hours: {appointment_only: 1, always_open: 2, no_set_business_hours: 3}
enum :non_standard_office_hours, {appointment_only: 1, always_open: 2, no_set_business_hours: 3}

belongs_to :organization, optional: true

Expand Down
2 changes: 1 addition & 1 deletion lib/active_storage/service/better_s3_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Service::BetterS3Service < Service::S3Service

def initialize(bucket:, upload: {}, **options)
@root = options.delete(:root)
super(bucket: bucket, upload: upload, **options)
super
end

private
Expand Down
2 changes: 1 addition & 1 deletion spec/rails_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# directory. Alternatively, in the individual `*_spec.rb` files, manually
# require only the support files necessary.
#
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
Dir[Rails.root.glob("spec/support/**/*.rb")].each { |f| require f }

# Checks for pending migrations and applies them before tests are run.
# If you are not using ActiveRecord, you can remove these lines.
Expand Down

0 comments on commit fc9216d

Please sign in to comment.