diff options
author | kennyj <kennyj@gmail.com> | 2012-01-19 01:43:59 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2012-01-19 01:43:59 +0900 |
commit | 38204eb1ce4698a9f479aef92b35f29e353ebc35 (patch) | |
tree | 4ce29d9c441ebeaf7aed6768b028c5a8a559bf5e | |
parent | 1430ed2284ec9cc63cb20142b61aaedafd87b9c0 (diff) | |
download | rails-38204eb1ce4698a9f479aef92b35f29e353ebc35.tar.gz rails-38204eb1ce4698a9f479aef92b35f29e353ebc35.tar.bz2 rails-38204eb1ce4698a9f479aef92b35f29e353ebc35.zip |
Fix warning: assigned but unused variable - result
-rw-r--r-- | actionpack/test/template/record_tag_helper_test.rb | 2 |
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 |