X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/caf2e2a242182f2c0dac78fc3f2f39b3fbbc8299..7e0fb05dd2128ea7e93ac214bca813388ceaa012:/test/controllers/profiles_controller_test.rb diff --git a/test/controllers/profiles_controller_test.rb b/test/controllers/profiles_controller_test.rb index 38e73a03f..824ecb5e3 100644 --- a/test/controllers/profiles_controller_test.rb +++ b/test/controllers/profiles_controller_test.rb @@ -39,7 +39,7 @@ class ProfilesControllerTest < ActionDispatch::IntegrationTest assert_template :show assert_select ".notice", /^Profile updated./ get edit_profile_path - assert_select "form > fieldset.form-group > div.form-row > div.col-sm-10 > div.form-check > input[name=avatar_action][checked][value=?]", "keep" + assert_select "form > fieldset > div > div.col-sm-10 > div.form-check > input[name=avatar_action][checked][value=?]", "keep" # Changing to a gravatar image should work put profile_path, :params => { :avatar_action => "gravatar", :user => { :description => user.description } } @@ -50,7 +50,7 @@ class ProfilesControllerTest < ActionDispatch::IntegrationTest assert_template :show assert_select ".notice", /^Profile updated./ get edit_profile_path - assert_select "form > fieldset.form-group > div.form-row > div.col-sm-10 > div.form-group > div.form-check > input[name=avatar_action][checked][value=?]", "gravatar" + assert_select "form > fieldset > div > div.col-sm-10 > div > div.form-check > input[name=avatar_action][checked][value=?]", "gravatar" # Removing the image should work put profile_path, :params => { :avatar_action => "delete", :user => { :description => user.description } } @@ -61,7 +61,7 @@ class ProfilesControllerTest < ActionDispatch::IntegrationTest assert_template :show assert_select ".notice", /^Profile updated./ get edit_profile_path - assert_select "form > fieldset.form-group > div.form-row > div.col-sm-10 > div.form-check > input[name=avatar_action][checked]", false - assert_select "form > fieldset.form-group > div.form-row > div.col-sm-10 > div.form-group > div.form-check > input[name=avatar_action][checked]", false + assert_select "form > fieldset > div > div.col-sm-10 > div > input[name=avatar_action][checked]", false + assert_select "form > fieldset > div > div.col-sm-10 > div > div.form-check > input[name=avatar_action][checked]", false end end