lib/rubocop/cop/rspec/before_after_all.rb in rubocop-rspec-1.32.0 vs lib/rubocop/cop/rspec/before_after_all.rb in rubocop-rspec-1.33.0
- old
+ new
@@ -25,10 +25,10 @@
# end
class BeforeAfterAll < Cop
MSG = 'Beware of using `%<hook>s` as it may cause state to leak '\
'between tests. If you are using `rspec-rails`, and '\
'`use_transactional_fixtures` is enabled, then records created '\
- 'in `%<hook>s` are not automatically rolled back.'.freeze
+ 'in `%<hook>s` are not automatically rolled back.'
def_node_matcher :before_or_after_all, <<-PATTERN
$(send _ {:before :after} (sym {:all :context}))
PATTERN