Skip to content

Commit

Permalink
Fix rubocop version 4.9.0 failures
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrw committed Dec 1, 2022
1 parent 77fdcb7 commit 2ebd93b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/services/feature_flag.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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[
Expand Down
2 changes: 1 addition & 1 deletion spec/rails_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2ebd93b

Please sign in to comment.