diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-04-29 12:33:15 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-04-29 12:33:15 -0300 |
commit | b18603b8902378662db33bdc3cca7550fcd8c4d4 (patch) | |
tree | cb4f2a03d6b775181a9d4cd55450495a10470363 /actionpack/test/template | |
parent | a782aa5a5c30ac471c97a99d12767b4bc2cd8d9d (diff) | |
download | rails-b18603b8902378662db33bdc3cca7550fcd8c4d4.tar.gz rails-b18603b8902378662db33bdc3cca7550fcd8c4d4.tar.bz2 rails-b18603b8902378662db33bdc3cca7550fcd8c4d4.zip |
Remove warning of unused variable
Diffstat (limited to 'actionpack/test/template')
-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 b4db6d9a71..f33471ab28 100644 --- a/actionpack/test/template/record_tag_helper_test.rb +++ b/actionpack/test/template/record_tag_helper_test.rb @@ -103,7 +103,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 |