summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/remove_concurrent_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/remove_concurrent_index.rb')
-rw-r--r--rubocop/cop/migration/remove_concurrent_index.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/migration/remove_concurrent_index.rb b/rubocop/cop/migration/remove_concurrent_index.rb
index 268c49865cb..2328740cf36 100644
--- a/rubocop/cop/migration/remove_concurrent_index.rb
+++ b/rubocop/cop/migration/remove_concurrent_index.rb
@@ -16,7 +16,7 @@ module RuboCop
return unless node.children[1] == :remove_concurrent_index
node.each_ancestor(:def) do |def_node|
- add_offense(def_node, :name) if method_name(def_node) == :change
+ add_offense(def_node, location: :name) if method_name(def_node) == :change
end
end