Remove unnecessary div/class/css

This commit is contained in:
John Firebaugh 2013-08-01 11:06:14 -07:00
parent 5cbaceb45f
commit 58cd5bfb11
4 changed files with 62 additions and 91 deletions

View file

@ -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 "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_email"
assert_select "form > fieldset > div.form-row > div.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 "div#signupForm > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
assert_select "form > fieldset > div.form-row > div.field_with_errors > input#user_display_name"
assert_no_missing_translations
end
end