aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/bin
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2017-06-11 15:59:23 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2017-06-14 12:10:17 +0300
commit6673cf7071094e87d473459452a2d0e4c2ccfebe (patch)
tree926d5c944b8fd71c1fa2db6ddbc5fc397722112e /activerecord/bin
parent326914dd3a15e04851c9ef4a47edeb3dad2ec381 (diff)
downloadrails-6673cf7071094e87d473459452a2d0e4c2ccfebe.tar.gz
rails-6673cf7071094e87d473459452a2d0e4c2ccfebe.tar.bz2
rails-6673cf7071094e87d473459452a2d0e4c2ccfebe.zip
Use `require_relative` instead of `require` with full path
Diffstat (limited to 'activerecord/bin')
-rwxr-xr-xactiverecord/bin/test2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/bin/test b/activerecord/bin/test
index 3a9547e5c1..ab69f4f603 100755
--- a/activerecord/bin/test
+++ b/activerecord/bin/test
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby
COMPONENT_ROOT = File.expand_path("..", __dir__)
-require File.expand_path("../tools/test", COMPONENT_ROOT)
+require_relative "../../tools/test"
module Minitest
def self.plugin_active_record_options(opts, options)