diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-07 21:39:55 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-08 00:26:09 -0300 |
commit | 1d3618a9b47d3160af00992756a4487906e39bcb (patch) | |
tree | 9ab0d0b449229f4a470f57f337ce133ed9b48932 /activesupport | |
parent | f2f63bf2ffa00d6187405c5851713d9fee68d5d3 (diff) | |
download | rails-1d3618a9b47d3160af00992756a4487906e39bcb.tar.gz rails-1d3618a9b47d3160af00992756a4487906e39bcb.tar.bz2 rails-1d3618a9b47d3160af00992756a4487906e39bcb.zip |
remove warning: assigned but unused variable
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/test_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/test_test.rb b/activesupport/test/test_test.rb index ee5a20c789..5bd995aa32 100644 --- a/activesupport/test/test_test.rb +++ b/activesupport/test/test_test.rb @@ -50,7 +50,7 @@ class AssertDifferenceTest < ActiveSupport::TestCase def test_expression_is_evaluated_in_the_appropriate_scope silence_warnings do - local_scope = 'foo' + local_scope = local_scope = 'foo' assert_difference('local_scope; @object.num') { @object.increment } end end |