aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2017-06-20 06:49:49 +0200
committerutilum <oz@utilum.com>2017-06-20 10:33:17 +0200
commit6631bc569f3f5cd5bef764a167ba1c9587d80fb7 (patch)
tree17d170ba56523d241d1fbb4e30223b160d6d9609 /activesupport
parent09cb26bc1e653999827cf3eb955d42a2c932b3f5 (diff)
downloadrails-6631bc569f3f5cd5bef764a167ba1c9587d80fb7.tar.gz
rails-6631bc569f3f5cd5bef764a167ba1c9587d80fb7.tar.bz2
rails-6631bc569f3f5cd5bef764a167ba1c9587d80fb7.zip
prepare for Minitest 6
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/core_ext/duration_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/duration_test.rb b/activesupport/test/core_ext/duration_test.rb
index 3108f24f21..cd1b505c34 100644
--- a/activesupport/test/core_ext/duration_test.rb
+++ b/activesupport/test/core_ext/duration_test.rb
@@ -315,7 +315,7 @@ class DurationTest < ActiveSupport::TestCase
assert_equal(1, scalar <=> 5)
assert_equal(0, scalar <=> 10)
assert_equal(-1, scalar <=> 15)
- assert_equal(nil, scalar <=> "foo")
+ assert_nil(scalar <=> "foo")
end
def test_scalar_plus