diff options
-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 |