1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #2702 from arunagw/removed_unused_var

Removed Unused Variable.
This commit is contained in:
Santiago Pastorino 2011-08-26 05:41:59 -07:00
commit 4a4dcb5059

View file

@ -532,7 +532,7 @@ class FormTagHelperTest < ActionView::TestCase
def test_image_label_tag_options_symbolize_keys_side_effects
options = { :option => "random_option" }
actual = label_tag "submit source", "title", options
label_tag "submit source", "title", options
assert_equal options, { :option => "random_option" }
end