From: Tom Hughes Date: Wed, 21 Oct 2009 23:35:59 +0000 (+0000) Subject: Fix tests to reflect changes to signup form. X-Git-Tag: live~6555^2~1 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d4b802075753bfc7110162ad28eebfbd20f91c7b Fix tests to reflect changes to signup form. --- diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb index 5c1d6f47e..058cab0ec 100644 --- a/test/functional/user_controller_test.rb +++ b/test/functional/user_controller_test.rb @@ -59,7 +59,7 @@ class UserControllerTest < ActionController::TestCase assert_response :success assert_template 'new' assert_select "div#errorExplanation" - assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_email" + assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email" end # Check that the user account page will display and contains some relevant diff --git a/test/integration/user_creation_test.rb b/test/integration/user_creation_test.rb index e4ed23294..361daa996 100644 --- a/test/integration/user_creation_test.rb +++ b/test/integration/user_creation_test.rb @@ -26,7 +26,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_template 'user/new' assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root assert_select "div#errorExplanation" - assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_email" + assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email" assert_no_missing_translations end end @@ -45,7 +45,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_response :success assert_template 'user/new' assert_select "div#errorExplanation" - assert_select "table#loginForm > tr > td > div[class=fieldWithErrors] > input#user_display_name" + assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_display_name" assert_no_missing_translations end end