From 9d667c8ba513004c795f67d6b7ac00fe4edb4315 Mon Sep 17 00:00:00 2001 From: Alexey Verkhovsky Date: Wed, 20 Jul 2005 01:50:49 +0000 Subject: [PATCH] Corrected a few failing functional tests (side effect of the prrevious commit) --- test/functional/admin_controller_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/functional/admin_controller_test.rb b/test/functional/admin_controller_test.rb index d1e034d3..7aed5c70 100644 --- a/test/functional/admin_controller_test.rb +++ b/test/functional/admin_controller_test.rb @@ -155,7 +155,7 @@ class AdminControllerTest < Test::Unit::TestCase #returns to the same form assert_success - assert @response.has_template_object?(:error) + assert @response.has_template_object?('error') end def test_edit_web_rename_to_already_existing_web_name @@ -169,7 +169,7 @@ class AdminControllerTest < Test::Unit::TestCase #returns to the same form assert_success - assert @response.has_template_object?(:error) + assert @response.has_template_object?('error') end def test_edit_web_empty_password @@ -180,7 +180,7 @@ class AdminControllerTest < Test::Unit::TestCase #returns to the same form assert_success - assert @response.has_template_object?(:error) + assert @response.has_template_object?('error') end