diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-26 05:41:59 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-26 05:41:59 -0700 |
commit | 4a4dcb505952458c896fe354ed5ce066b13a2bf1 (patch) | |
tree | f0bd8bb0d1c24fe765f9cb549bb996a7ac2f3856 | |
parent | e3a020a679acc732c0e57ada597c3c4043b96aa1 (diff) | |
parent | 651ef614f1934578886ca792bb5e3eca8b5d1b48 (diff) | |
download | rails-4a4dcb505952458c896fe354ed5ce066b13a2bf1.tar.gz rails-4a4dcb505952458c896fe354ed5ce066b13a2bf1.tar.bz2 rails-4a4dcb505952458c896fe354ed5ce066b13a2bf1.zip |
Merge pull request #2702 from arunagw/removed_unused_var
Removed Unused Variable.
-rw-r--r-- | actionpack/test/template/form_tag_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb index 091f4e65b7..6eae9bf846 100644 --- a/actionpack/test/template/form_tag_helper_test.rb +++ b/actionpack/test/template/form_tag_helper_test.rb @@ -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 |