lib/rubocop/cop/rspec/scattered_let.rb in rubocop-rspec-1.42.0 vs lib/rubocop/cop/rspec/scattered_let.rb in rubocop-rspec-1.43.0
- old
+ new
@@ -24,10 +24,10 @@
# let(:foo) { 1 }
# let(:bar) { 2 }
# let!(:baz) { 3 }
# end
#
- class ScatteredLet < Cop
+ class ScatteredLet < Base
extend AutoCorrector
MSG = 'Group all let/let! blocks in the example group together.'
def on_block(node)