X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/12c1d5e6c05813a0697724277b4d8529a1a7c240..7054cea48ee9728c155334b48777a5f25db89af8:/test/controllers/preferences_controller_test.rb diff --git a/test/controllers/preferences_controller_test.rb b/test/controllers/preferences_controller_test.rb index 6bc609e6a..46d761ca4 100644 --- a/test/controllers/preferences_controller_test.rb +++ b/test/controllers/preferences_controller_test.rb @@ -29,8 +29,8 @@ class PreferencesControllerTest < ActionDispatch::IntegrationTest put preferences_path, :params => { :user => user.attributes } assert_response :success assert_template :edit - assert_select ".notice", false - assert_select ".error", true + assert_select ".alert-success", false + assert_select ".alert-danger", true assert_select "form > div > select#user_preferred_editor > option[selected]", false # Changing to a valid editor should work @@ -40,7 +40,7 @@ class PreferencesControllerTest < ActionDispatch::IntegrationTest assert_redirected_to preferences_path follow_redirect! assert_template :show - assert_select ".notice", /^Preferences updated/ + assert_select ".alert-success", /^Preferences updated/ assert_select "dd", "iD (in-browser editor)" # Changing to the default editor should work @@ -50,7 +50,7 @@ class PreferencesControllerTest < ActionDispatch::IntegrationTest assert_redirected_to preferences_path follow_redirect! assert_template :show - assert_select ".notice", /^Preferences updated/ + assert_select ".alert-success", /^Preferences updated/ assert_select "dd", "Default (currently iD)" end end