aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_tag_helper_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-06-29 18:02:39 +0200
committerJosé Valim <jose.valim@gmail.com>2010-06-29 18:02:39 +0200
commitcaab17611668ff18a3c8642b2d45b353be5d9691 (patch)
tree42ea9628667f6f70a3ac2861ba854c6e5403b0b2 /actionpack/test/template/form_tag_helper_test.rb
parentdabf74b4950f486075b380f2406ede9fa67606db (diff)
downloadrails-caab17611668ff18a3c8642b2d45b353be5d9691.tar.gz
rails-caab17611668ff18a3c8642b2d45b353be5d9691.tar.bz2
rails-caab17611668ff18a3c8642b2d45b353be5d9691.zip
Rename _snowman_ to _snowman to be in sync with _method and _csrf_token.
Diffstat (limited to 'actionpack/test/template/form_tag_helper_test.rb')
-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 75d2773c0a..8a0f352bc0 100644
--- a/actionpack/test/template/form_tag_helper_test.rb
+++ b/actionpack/test/template/form_tag_helper_test.rb
@@ -12,7 +12,7 @@ class FormTagHelperTest < ActionView::TestCase
method = options[:method]
txt = %{<div style="margin:0;padding:0;display:inline">}
- txt << %{<input name="_snowman_" type="hidden" value="&#9731;" />}
+ txt << %{<input name="_snowman" type="hidden" value="&#9731;" />}
txt << %{<input name="_method" type="hidden" value="#{method}" />} if method
txt << %{</div>}
end