lib/rubocop/cop/minitest/assert_in_delta.rb in rubocop-minitest-0.19.1 vs lib/rubocop/cop/minitest/assert_in_delta.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 enforces the test to use `assert_in_delta`
+ # Enforces the test to use `assert_in_delta`
# instead of using `assert_equal` to compare floats.
#
# @example
# # bad
# assert_equal(0.2, actual)