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

Removed Unused Variable.

This commit is contained in:
Arun Agrawal 2011-08-26 11:29:05 +05:30
parent e3a020a679
commit 651ef614f1

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