ruby-changes:39072
From: nobu <ko1@a...>
Date: Mon, 6 Jul 2015 01:18:41 +0900 (JST)
Subject: [ruby-changes:39072] nobu:r51153 (trunk): parallel.rb: upper directory
nobu 2015-07-06 01:18:14 +0900 (Mon, 06 Jul 2015) New Revision: 51153 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51153 Log: parallel.rb: upper directory * test/lib/test/unit/parallel.rb: make @@project_dir one level upper as this file had moved one level deeper. Modified files: trunk/ChangeLog trunk/test/lib/test/unit/parallel.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 51152) +++ ChangeLog (revision 51153) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Jul 6 01:18:11 2015 Nobuyoshi Nakada <nobu@r...> + + * test/lib/test/unit/parallel.rb: make @@project_dir one level + upper as this file had moved one level deeper. + Sun Jul 5 23:54:10 2015 mizokami <suzunatsu@y...> * lib/optparse.rb: [DOC] Fix typo. Index: test/lib/test/unit/parallel.rb =================================================================== --- test/lib/test/unit/parallel.rb (revision 51152) +++ test/lib/test/unit/parallel.rb (revision 51153) @@ -183,7 +183,7 @@ if $0 == __FILE__ https://github.com/ruby/ruby/blob/trunk/test/lib/test/unit/parallel.rb#L183 module Gem # :nodoc: end class Gem::TestCase < MiniTest::Unit::TestCase # :nodoc: - @@project_dir = File.expand_path('../../../..', __FILE__) + @@project_dir = File.expand_path('../../../../..', __FILE__) end Test::Unit::Worker.new.run(ARGV) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/