aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_tag_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/form_tag_helper_test.rb')
-rw-r--r--actionpack/test/template/form_tag_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb
index 7a666271c1..6295aa91b6 100644
--- a/actionpack/test/template/form_tag_helper_test.rb
+++ b/actionpack/test/template/form_tag_helper_test.rb
@@ -22,7 +22,7 @@ class FormTagHelperTest < Test::Unit::TestCase
end
def test_form_tag
- actual = form_tag
+ actual = form_tag
expected = %(<form action="http://www.example.com" method="post">)
assert_equal expected, actual
end
@@ -41,7 +41,7 @@ class FormTagHelperTest < Test::Unit::TestCase
def test_password_field_tag
actual = password_field_tag
- expected = %(<input id="password" name="password" type="password" value="" />)
+ expected = %(<input id="password" name="password" type="password" />)
assert_equal expected, actual
end