lib/rubocop/cop/minitest/unreachable_assertion.rb in rubocop-minitest-0.19.1 vs lib/rubocop/cop/minitest/unreachable_assertion.rb in rubocop-minitest-0.20.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module RuboCop
module Cop
module Minitest
- # This cop checks for `assert_raises` has an assertion method at
+ # Checks for `assert_raises` has an assertion method at
# the bottom of block because the assertion will be never reached.
#
# @example
#
# # bad