]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/confirmations_controller_test.rb
Fix new rubocop warnings
[rails.git] / test / controllers / confirmations_controller_test.rb
index 1ab4d253e5461d6a33bcdfb3f7014e71893eb5ed..083619962febddfaffc971af3285adb9daf39e0b 100644 (file)
@@ -299,8 +299,8 @@ class UsersControllerTest < ActionDispatch::IntegrationTest
 
   def test_confirm_email_bad_token
     post user_confirm_email_path, :params => { :confirm_string => "XXXXX" }
-    assert_response :success
-    assert_template :confirm_email
+    assert_response :redirect
+    assert_redirected_to edit_account_path
     assert_match(/confirmation code has expired or does not exist/, flash[:error])
   end