aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/deprecation_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-12-18 13:21:24 +0530
committerVipul A M <vipulnsward@gmail.com>2013-12-18 14:39:50 +0530
commit7bae2921ec51335ec87fde1980a1b568ce37fc1c (patch)
tree1e9d2893e4f66177415077d9b53fa14ddee04eb0 /activesupport/test/deprecation_test.rb
parentc141dfc838a5dca9f197814410fa5d44c143129c (diff)
downloadrails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.tar.gz
rails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.tar.bz2
rails-7bae2921ec51335ec87fde1980a1b568ce37fc1c.zip
Change all `MiniTest` to `Minitest` since, `MiniTest` namespace has been renamed to `Minitest`
Ref: https://github.com/seattlerb/minitest/blob/master/History.txt
Diffstat (limited to 'activesupport/test/deprecation_test.rb')
-rw-r--r--activesupport/test/deprecation_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/deprecation_test.rb b/activesupport/test/deprecation_test.rb
index 9674851b9d..d118b0ddbf 100644
--- a/activesupport/test/deprecation_test.rb
+++ b/activesupport/test/deprecation_test.rb
@@ -174,7 +174,7 @@ class DeprecationTest < ActiveSupport::TestCase
ActiveSupport::Deprecation.warn 'abc'
ActiveSupport::Deprecation.warn 'def'
end
- rescue MiniTest::Assertion
+ rescue Minitest::Assertion
flunk 'assert_deprecated should match any warning in block, not just the last one'
end