From edb68e839f4830e722bf187af7e77c9a248551a8 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 7 Dec 2010 21:37:04 +0000 Subject: [PATCH 1/1] Rail 3 has renamed fieldWithErrors to field_with_errors --- public/stylesheets/common.css | 2 +- test/functional/user_controller_test.rb | 2 +- test/integration/user_creation_test.rb | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/public/stylesheets/common.css b/public/stylesheets/common.css index e256bb3f6..974edac44 100644 --- a/public/stylesheets/common.css +++ b/public/stylesheets/common.css @@ -932,7 +932,7 @@ p#contributorGuidance { /* Rules for highlighting fields with rails validation errors */ -.fieldWithErrors { +.field_with_errors { padding: 2px; background-color: red; display: table; diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb index 750cfbaaf..a069f20a2 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#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email" + assert_select "table#signupForm > tr > td > div[class=field_with_errors] > 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 b0d0ecffd..79772d444 100644 --- a/test/integration/user_creation_test.rb +++ b/test/integration/user_creation_test.rb @@ -30,7 +30,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#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email" + assert_select "table#signupForm > tr > td > div[class=field_with_errors] > input#user_email" assert_no_missing_translations end end @@ -49,7 +49,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_response :success assert_template 'user/new' assert_select "div#errorExplanation" - assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_display_name" + assert_select "table#signupForm > tr > td > div[class=field_with_errors] > input#user_display_name" assert_no_missing_translations end end -- 2.43.2