X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1becffcbf5a948aacca7289dcf24db3fc971ea9c..318064b2a7f4b39119dfab02c712832c0f8c5859:/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