lib/rubocop/cop/rspec/multiple_expectations.rb in rubocop-rspec-1.32.0 vs lib/rubocop/cop/rspec/multiple_expectations.rb in rubocop-rspec-1.33.0
- old
+ new
@@ -46,10 +46,10 @@
# end
#
class MultipleExpectations < Cop
include ConfigurableMax
- MSG = 'Example has too many expectations [%<total>d/%<max>d].'.freeze
+ MSG = 'Example has too many expectations [%<total>d/%<max>d].'
def_node_search :with_aggregated_failures?, '(sym :aggregate_failures)'
def_node_search :disabled_aggregated_failures?, <<-PATTERN
(pair (sym :aggregate_failures) (false))
PATTERN