lib/rubocop/cop/rspec/implicit_expect.rb in rubocop-rspec-1.42.0 vs lib/rubocop/cop/rspec/implicit_expect.rb in rubocop-rspec-1.43.0

- old
+ new

@@ -22,10 +22,10 @@ # it { is_expected.to be_truthy } # # # good # it { should be_truthy } # - class ImplicitExpect < Cop + class ImplicitExpect < Base extend AutoCorrector include ConfigurableEnforcedStyle MSG = 'Prefer `%<good>s` over `%<bad>s`.'