Fix warning: assigned but unused variable - result

This commit is contained in:
kennyj 2012-01-19 01:43:59 +09:00
parent 1430ed2284
commit 38204eb1ce

@ -97,7 +97,7 @@ def test_content_tag_for_collection_is_html_safe
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