diff options
author | Arun Agrawal <arun@fromjaipur.com> | 2011-08-26 11:29:05 +0530 |
---|---|---|
committer | Arun Agrawal <arun@fromjaipur.com> | 2011-08-26 11:29:05 +0530 |
commit | 651ef614f1934578886ca792bb5e3eca8b5d1b48 (patch) | |
tree | f0bd8bb0d1c24fe765f9cb549bb996a7ac2f3856 /actionpack/test/template | |
parent | e3a020a679acc732c0e57ada597c3c4043b96aa1 (diff) | |
download | rails-651ef614f1934578886ca792bb5e3eca8b5d1b48.tar.gz rails-651ef614f1934578886ca792bb5e3eca8b5d1b48.tar.bz2 rails-651ef614f1934578886ca792bb5e3eca8b5d1b48.zip |
Removed Unused Variable.
Diffstat (limited to 'actionpack/test/template')
-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 |