lib/rubocop/cop/rspec/instance_variable.rb in rubocop-rspec-2.25.0 vs lib/rubocop/cop/rspec/instance_variable.rb in rubocop-rspec-2.26.0
- old
+ new
@@ -50,15 +50,15 @@
MSG = 'Avoid instance variables - use let, ' \
'a method call, or a local variable (if possible).'
# @!method dynamic_class?(node)
- def_node_matcher :dynamic_class?, <<-PATTERN
+ def_node_matcher :dynamic_class?, <<~PATTERN
(block (send (const nil? :Class) :new ...) ...)
PATTERN
# @!method custom_matcher?(node)
- def_node_matcher :custom_matcher?, <<-PATTERN
+ def_node_matcher :custom_matcher?, <<~PATTERN
(block {
(send nil? :matcher sym)
(send (const (const nil? :RSpec) :Matchers) :define sym)
} ...)
PATTERN