aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorArun Agrawal <arun@fromjaipur.com>2011-08-26 11:29:05 +0530
committerArun Agrawal <arun@fromjaipur.com>2011-08-26 11:29:05 +0530
commit651ef614f1934578886ca792bb5e3eca8b5d1b48 (patch)
treef0bd8bb0d1c24fe765f9cb549bb996a7ac2f3856 /actionpack
parente3a020a679acc732c0e57ada597c3c4043b96aa1 (diff)
downloadrails-651ef614f1934578886ca792bb5e3eca8b5d1b48.tar.gz
rails-651ef614f1934578886ca792bb5e3eca8b5d1b48.tar.bz2
rails-651ef614f1934578886ca792bb5e3eca8b5d1b48.zip
Removed Unused Variable.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/form_tag_helper_test.rb2
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