Fix typo in plugins_test.rb (#38707).

git-svn-id: https://svn.redmine.org/redmine/trunk@22371 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu
2023-10-23 17:51:02 +00:00
parent f1437b7ec5
commit b141aed19f

View File

@@ -27,7 +27,7 @@ class RoutingPluginsTest < Redmine::RoutingTest
"config/routes.rb" => <<~ROUTES_CONTENT,
resources :plugin_articles, only: %i[index]
ROUTES_CONTENT
"app/contrtollers/plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
"app/controllers/plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
class PluginArticlesController < ApplicationController
def index
render plain: "foo PluginArticlesController#index"
@@ -41,7 +41,7 @@ class RoutingPluginsTest < Redmine::RoutingTest
# same path helper name with foo's
get '/bar_plugin_articles', as: :plugin_articles, to: 'bar_plugin_articles#index'
ROUTES_CONTENT
"app/contrtollers/bar_plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
"app/controllers/bar_plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
class BarPluginArticlesController < ApplicationController
def index
render plain: "bar BarPluginArticlesController#index"