diff options
author | wycats <wycats@gmail.com> | 2010-08-18 16:48:49 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-08-18 16:49:06 -0700 |
commit | 483b60b9ff2b467c9d4f4892ef1d5b68c95793d8 (patch) | |
tree | 7427866e9477251f0162d93e08fa8ba2b2f30f73 /actionpack/test/template | |
parent | e4f424d577df58225c0dbedb5ff4869d66a62e8f (diff) | |
download | rails-483b60b9ff2b467c9d4f4892ef1d5b68c95793d8.tar.gz rails-483b60b9ff2b467c9d4f4892ef1d5b68c95793d8.tar.bz2 rails-483b60b9ff2b467c9d4f4892ef1d5b68c95793d8.zip |
Revert "It's snowing!"
This reverts commit e4283007d607454acf97301821ba1e1c417bdead.
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 2 | ||||
-rw-r--r-- | actionpack/test/template/form_tag_helper_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index 4c81e691b2..71a5ae0245 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -1513,7 +1513,7 @@ class FormHelperTest < ActionView::TestCase def snowman(method = nil) txt = %{<div style="margin:0;padding:0;display:inline">} - txt << %{<input name="_utf8" type="hidden" value="☃" />} + txt << %{<input name="utf8" type="hidden" value="✓" />} txt << %{<input name="_method" type="hidden" value="#{method}" />} if method txt << %{</div>} end diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb index d2f725a994..532f086d21 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="_utf8" type="hidden" value="☃" />} + txt << %{<input name="utf8" type="hidden" value="✓" />} txt << %{<input name="_method" type="hidden" value="#{method}" />} if method txt << %{</div>} end |