aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-05-18 21:16:43 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-05-18 21:16:43 +0000
commitd2acf8b548b56966da49bd7f2f92dcfbd5410319 (patch)
treedc11222862e1dea8cc673c45b1be9f71239d996c /activesupport/test
parent57b5fb43efc1fd990f36e5b6a6a2f2c15cc480f1 (diff)
downloadrails-d2acf8b548b56966da49bd7f2f92dcfbd5410319.tar.gz
rails-d2acf8b548b56966da49bd7f2f92dcfbd5410319.tar.bz2
rails-d2acf8b548b56966da49bd7f2f92dcfbd5410319.zip
Silence some warnings.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6772 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/test_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/test_test.rb b/activesupport/test/test_test.rb
index e29534ccaf..b1d916d5c0 100644
--- a/activesupport/test/test_test.rb
+++ b/activesupport/test/test_test.rb
@@ -49,8 +49,8 @@ class AssertDifferenceTest < Test::Unit::TestCase
def test_expression_is_evaluated_in_the_appropriate_scope
local_scope = 'foo'
- assert_difference 'local_scope; @object.num' do
- @object.increment
+ silence_warnings do
+ assert_difference('local_scope; @object.num') { @object.increment }
end
end
end