diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-03-15 20:36:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 01:36:37 +0100 |
commit | a38f67c1c3f3c05bcbf552aad2f7f931fa0a4286 (patch) | |
tree | 02a063b2a9f6a4ad5065ed0ad8ea15ce805037f5 | |
parent | 65669d3c5719e72000bf26849d0ee1eaec1f9d1b (diff) |
Autofix Rubocop Style/PreferredHashMethods (#23851)
-rw-r--r-- | .rubocop_todo.yml | 8 | ||||
-rw-r--r-- | spec/support/matchers/model/model_have_error_on_field.rb | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 8a96e59f9..0921d4f73 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -2050,14 +2050,6 @@ Style/OptionalBooleanParameter: - 'app/workers/unfollow_follow_worker.rb' - 'lib/mastodon/redis_config.rb' -# Offense count: 1 -# This cop supports unsafe autocorrection (--autocorrect-all). -# Configuration parameters: EnforcedStyle. -# SupportedStyles: short, verbose -Style/PreferredHashMethods: - Exclude: - - 'spec/support/matchers/model/model_have_error_on_field.rb' - # Offense count: 5 # This cop supports unsafe autocorrection (--autocorrect-all). # Configuration parameters: Methods. diff --git a/spec/support/matchers/model/model_have_error_on_field.rb b/spec/support/matchers/model/model_have_error_on_field.rb index 21632b574..0f9c81a47 100644 --- a/spec/support/matchers/model/model_have_error_on_field.rb +++ b/spec/support/matchers/model/model_have_error_on_field.rb @@ -4,7 +4,7 @@ RSpec::Matchers.define :model_have_error_on_field do |expected| match do |record| record.valid? if record.errors.empty? - record.errors.has_key?(expected) + record.errors.key?(expected) end failure_message do |record| |