aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/record_tag_helper_test.rb
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-01-19 01:43:59 +0900
committerkennyj <kennyj@gmail.com>2012-01-19 01:43:59 +0900
commit38204eb1ce4698a9f479aef92b35f29e353ebc35 (patch)
tree4ce29d9c441ebeaf7aed6768b028c5a8a559bf5e /actionpack/test/template/record_tag_helper_test.rb
parent1430ed2284ec9cc63cb20142b61aaedafd87b9c0 (diff)
downloadrails-38204eb1ce4698a9f479aef92b35f29e353ebc35.tar.gz
rails-38204eb1ce4698a9f479aef92b35f29e353ebc35.tar.bz2
rails-38204eb1ce4698a9f479aef92b35f29e353ebc35.zip
Fix warning: assigned but unused variable - result
Diffstat (limited to 'actionpack/test/template/record_tag_helper_test.rb')
-rw-r--r--actionpack/test/template/record_tag_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/record_tag_helper_test.rb b/actionpack/test/template/record_tag_helper_test.rb
index e6ca015483..a84034c02e 100644
--- a/actionpack/test/template/record_tag_helper_test.rb
+++ b/actionpack/test/template/record_tag_helper_test.rb
@@ -97,7 +97,7 @@ class RecordTagHelperTest < ActionView::TestCase
def test_content_tag_for_does_not_change_options_hash
options = { :class => "important" }
- result = content_tag_for(:li, @post, options) { }
+ content_tag_for(:li, @post, options) { }
assert_equal({ :class => "important" }, options)
end
end