summaryrefslogtreecommitdiffstats
path: root/test/unit/user_query_test.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2023-01-01 07:13:39 +0000
committerGo MAEDA <maeda@farend.jp>2023-01-01 07:13:39 +0000
commit1481c721a222ccf05a43ae98d1cf7730314a13d5 (patch)
tree7ffacec036458fd198e7cbf6f5ae72d7cc7eca3e /test/unit/user_query_test.rb
parent92bd67c279516f339866e95c702b39cee325ef05 (diff)
downloadredmine-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 'test/unit/user_query_test.rb')
-rw-r--r--test/unit/user_query_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/user_query_test.rb b/test/unit/user_query_test.rb
index 0dbf87092..9bb9c816d 100644
--- a/test/unit/user_query_test.rb
+++ b/test/unit/user_query_test.rb
@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-require File.expand_path('../../test_helper', __FILE__)
+require_relative '../test_helper'
class UserQueryTest < ActiveSupport::TestCase
fixtures :users, :groups_users, :email_addresses,