summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_require.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_require.rb b/test/ruby/test_require.rb
index bbfc6e619c..3d6981d303 100644
--- a/test/ruby/test_require.rb
+++ b/test/ruby/test_require.rb
@@ -509,7 +509,7 @@ class TestRequire < Test::Unit::TestCase
$: << a
begin
require "foo"
- p :ng
+ p [:ng, $LOAD_PATH, ENV['RUBYLIB']]
rescue LoadError
end
def a.to_path
@@ -534,7 +534,7 @@ class TestRequire < Test::Unit::TestCase
$: << a
begin
require "foo"
- p :ng
+ p [:ng, $LOAD_PATH, ENV['RUBYLIB']]
rescue LoadError
end
def a.to_str