diff options
author | Go MAEDA <maeda@farend.jp> | 2023-01-01 07:13:39 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-01-01 07:13:39 +0000 |
commit | 1481c721a222ccf05a43ae98d1cf7730314a13d5 (patch) | |
tree | 7ffacec036458fd198e7cbf6f5ae72d7cc7eca3e /lib/generators/redmine_plugin_controller | |
parent | 92bd67c279516f339866e95c702b39cee325ef05 (diff) | |
download | redmine-1481c721a222ccf05a43ae98d1cf7730314a13d5.tar.gz redmine-1481c721a222ccf05a43ae98d1cf7730314a13d5.zip |
Use `require_relative` instead of `require File.expand_path(..., __FILE__)` (#38093).
Patch by Go MAEDA.
git-svn-id: https://svn.redmine.org/redmine/trunk@22016 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/generators/redmine_plugin_controller')
-rw-r--r-- | lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb b/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb index 0499b6970..89cd961ae 100644 --- a/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb +++ b/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb @@ -1,4 +1,4 @@ -require File.expand_path('../../test_helper', __FILE__) +require_relative '../test_helper' class <%= @controller_class %>ControllerTest < ActionController::TestCase # Replace this with your real tests. |