summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-23 14:17:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-23 14:17:16 +0000
commitf7add52f8f5bca11c1d0e2c95dd7c65333036d0f (patch)
tree25371f572c0bcc057beba6c03b0bcc73044d6e88 /test/lib
parent3675920c1e4e4d8464a6f18b6999b583fc1d3acf (diff)
test/unit.rb: fixed wrong method name
* test/lib/test/unit.rb (Test::Unit::Parallel#deal): fixed wrong method name at r36388. * test/testunit/test_parallel.rb (TestParallel::TestParallel#test_separate): refine the pattern to process IDs but not backtrace lines, and add a better message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/test/unit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/test/unit.rb b/test/lib/test/unit.rb
index f588aec551..105a9a897d 100644
--- a/test/lib/test/unit.rb
+++ b/test/lib/test/unit.rb
@@ -404,7 +404,7 @@ module Test
end
if @options[:separate] and not bang
worker.quit
- worker = add_worker
+ worker = launch_worker
end
worker.run(task, type)
@test_count += 1