summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/io/console/test_io_console.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index d79ad1a084..33b98990a1 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -11,7 +11,7 @@ class TestIO_Console < Test::Unit::TestCase
PATHS = $LOADED_FEATURES.grep(%r"/io/console(?:\.#{RbConfig::CONFIG['DLEXT']}|\.rb|/\w+\.rb)\z") {$`}
rescue Encoding::CompatibilityError
$stderr.puts "test_io_console.rb debug"
- $stderr.puts $LOADED_FEATURES.inspect
+ $LOADED_FEATURES.each{|path| $stderr.puts [path, path.encoding].inspect}
raise
end
PATHS.uniq!