diff options
author | claudiob <claudiob@gmail.com> | 2015-01-04 07:45:07 -0800 |
---|---|---|
committer | claudiob <claudiob@gmail.com> | 2015-01-04 07:45:07 -0800 |
commit | adfeeb01e798278ad43b67d882bdd1f54aff3b3f (patch) | |
tree | 82a68de73f8ee6eeb8b80608945e1222714a420c /activesupport/lib | |
parent | 526e5e845a552abadf7e718ed1f1c5e0bf7c8876 (diff) | |
download | rails-adfeeb01e798278ad43b67d882bdd1f54aff3b3f.tar.gz rails-adfeeb01e798278ad43b67d882bdd1f54aff3b3f.tar.bz2 rails-adfeeb01e798278ad43b67d882bdd1f54aff3b3f.zip |
Remove unneeded `require 'as/deprecation'`
Tests should still pass after removing `require 'active_support/deprecation'`
from these files since the related deprecations have been removed.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index aa71db3c56..c7d6c62129 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -9,7 +9,6 @@ require 'active_support/testing/isolation' require 'active_support/testing/constant_lookup' require 'active_support/testing/time_helpers' require 'active_support/core_ext/kernel/reporting' -require 'active_support/deprecation' module ActiveSupport class TestCase < ::Minitest::Test |