mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove needless splat array
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f22345427a
commit
dd3b3dd0f3
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ class TestRubyOptions < Test::Unit::TestCase
|
|||
@verbose = $VERBOSE
|
||||
$VERBOSE = nil
|
||||
|
||||
path, name = *File.split(t.path)
|
||||
path, name = File.split(t.path)
|
||||
|
||||
ENV['PATH'] = (path_orig && RbConfig::CONFIG['LIBPATHENV'] == 'PATH') ?
|
||||
[path, path_orig].join(File::PATH_SEPARATOR) : path
|
||||
|
|
Loading…
Reference in a new issue