lib/rubocop/cop/rspec/mixin/metadata.rb in rubocop-rspec-2.24.1 vs lib/rubocop/cop/rspec/mixin/metadata.rb in rubocop-rspec-2.25.0
- old
+ new
@@ -28,26 +28,26 @@
PATTERN
def on_block(node)
rspec_configure(node) do |block_var|
metadata_in_block(node, block_var) do |metadata_arguments|
- on_matadata_arguments(metadata_arguments)
+ on_metadata_arguments(metadata_arguments)
end
end
rspec_metadata(node) do |metadata_arguments|
- on_matadata_arguments(metadata_arguments)
+ on_metadata_arguments(metadata_arguments)
end
end
alias on_numblock on_block
def on_metadata(_symbols, _hash)
raise ::NotImplementedError
end
private
- def on_matadata_arguments(metadata_arguments)
+ def on_metadata_arguments(metadata_arguments)
*symbols, last = metadata_arguments
hash = nil
case last&.type
when :hash
hash = last