X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6c51b3cc0ad7e193c7dae3794502088faab37c7b..321f8cecdc8044625a8951cbcdd94c6c1c8f83f5:/test/functional/message_controller_test.rb diff --git a/test/functional/message_controller_test.rb b/test/functional/message_controller_test.rb index d6b5671ac..f015b1ec3 100644 --- a/test/functional/message_controller_test.rb +++ b/test/functional/message_controller_test.rb @@ -130,7 +130,7 @@ class MessageControllerTest < ActionController::TestCase assert_equal true, Message.find(messages(:unread_message).id).message_read # Asking to reply to a message with no ID should fail - assert_raise ActionController::RoutingError do + assert_raise ActionController::UrlGenerationError do get :reply end @@ -177,7 +177,7 @@ class MessageControllerTest < ActionController::TestCase assert_equal true, Message.find(messages(:unread_message).id).message_read # Asking to read a message with no ID should fail - assert_raise ActionController::RoutingError do + assert_raise ActionController::UrlGenerationError do get :read end @@ -280,7 +280,7 @@ class MessageControllerTest < ActionController::TestCase assert_equal false, Message.find(messages(:unread_message).id).message_read # Asking to mark a message with no ID should fail - assert_raise ActionController::RoutingError do + assert_raise ActionController::UrlGenerationError do post :mark end @@ -327,7 +327,7 @@ class MessageControllerTest < ActionController::TestCase assert_equal true, m.to_user_visible # Asking to delete a message with no ID should fail - assert_raise ActionController::RoutingError do + assert_raise ActionController::UrlGenerationError do post :delete end