Skip to content

Commit

Permalink
Merge pull request #1776 from troessner/dependabot/bundler/rubocop-tw…
Browse files Browse the repository at this point in the history
…-1.63.0

Update rubocop requirement from ~> 1.62.0 to ~> 1.63.0
  • Loading branch information
mvz committed Apr 8, 2024
2 parents 6f8c51d + 3413579 commit 04a4ac6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -14,7 +14,7 @@ group :development do
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
gem 'rspec-benchmark', '~> 0.6.0'
gem 'rubocop', '~> 1.62.0'
gem 'rubocop', '~> 1.63.0'
gem 'rubocop-performance', '~> 1.21.0'
gem 'rubocop-rspec', '~> 2.29.1'
gem 'rubocop-rspec_rails', '~> 2.28.2'
Expand Down
4 changes: 2 additions & 2 deletions spec/reek/context/code_context_spec.rb
Expand Up @@ -175,12 +175,12 @@ def repeated_greeting
let(:first_child) { described_class.new(instance_double(Reek::AST::Node)) }
let(:second_child) { described_class.new(instance_double(Reek::AST::Node)) }

it 'yields each child' do
it 'yields each child when given a block' do
first_child.register_with_parent context
second_child.register_with_parent context

result = []
context.each do |ctx|
context.each do |ctx| # rubocop:disable Style/MapIntoArray
result << ctx
end

Expand Down

0 comments on commit 04a4ac6

Please sign in to comment.