diff options
author | Raghunadh <raghunadhd@gmail.com> | 2011-05-21 00:29:30 -0700 |
---|---|---|
committer | Raghunadh <raghunadhd@gmail.com> | 2011-05-21 00:29:30 -0700 |
commit | cd6ae26e8ff5a49787b4ac0d89d3aff780cd5c9a (patch) | |
tree | e1b1746b3031d09c4682598bc9a607d5da169171 | |
parent | 89d7133082159b7d0a456bd9b524be50149918b3 (diff) | |
download | rails-cd6ae26e8ff5a49787b4ac0d89d3aff780cd5c9a.tar.gz rails-cd6ae26e8ff5a49787b4ac0d89d3aff780cd5c9a.tar.bz2 rails-cd6ae26e8ff5a49787b4ac0d89d3aff780cd5c9a.zip |
fixed failing tests of ActiveSupport for deprecation test
-rw-r--r-- | activesupport/test/deprecation_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/deprecation_test.rb b/activesupport/test/deprecation_test.rb index cad0810241..d77a62f108 100644 --- a/activesupport/test/deprecation_test.rb +++ b/activesupport/test/deprecation_test.rb @@ -62,7 +62,7 @@ class DeprecationTest < ActiveSupport::TestCase end def test_deprecate_class_method - assert_deprecated(/none is deprecated.*test_deprecate_class_method/) do + assert_deprecated(/none is deprecated/) do assert_equal 1, @dtc.none end |