aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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