lib/rubocop/cop/rspec/it_behaves_like.rb in rubocop-rspec-1.32.0 vs lib/rubocop/cop/rspec/it_behaves_like.rb in rubocop-rspec-1.33.0

- old
+ new

@@ -20,10 +20,10 @@ # it_should_behave_like 'a foo' class ItBehavesLike < Cop include ConfigurableEnforcedStyle MSG = 'Prefer `%<replacement>s` over `%<original>s` when including '\ - 'examples in a nested context.'.freeze + 'examples in a nested context.' def_node_matcher :example_inclusion_offense, '(send _ % ...)' def on_send(node) example_inclusion_offense(node, alternative_style) do