diff --git a/app/services/feature_flag.rb b/app/services/feature_flag.rb index 8ca0f10e6d..5074c27b90 100644 --- a/app/services/feature_flag.rb +++ b/app/services/feature_flag.rb @@ -12,8 +12,7 @@ def feature end # Long-lived settings that are often environment-specific - PERMANENT_SETTINGS = %i[ - ].freeze + PERMANENT_SETTINGS = %i[].freeze # Short-lived feature flags TEMPORARY_FEATURE_FLAGS = %i[ diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 52002b3d1a..86ceed98cf 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -59,7 +59,7 @@ end config.include Devise::Test::IntegrationHelpers, type: :request # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures - config.fixture_path = "#{::Rails.root}/spec/fixtures" + config.fixture_path = ::Rails.root.join("spec/fixtures").to_path # If you're not using ActiveRecord, or you'd prefer not to run each of your # examples within a transaction, remove the following line or assign false