1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/thread/test_queue.rb (TestQueue#grind): fix typos.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2010-04-16 22:45:45 +00:00
parent d49860bfbc
commit a350d0afc5
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sat Apr 17 07:43:55 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/thread/test_queue.rb (TestQueue#grind): fix typos.
Sat Apr 17 07:27:53 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* NEWS: add Array#repeated_{combinationpermutation} [Feature #2981]

View file

@ -32,7 +32,7 @@ class TestQueue < Test::Unit::TestCase
num_threads.times { to_workers.push nil }
workers.each { |t| t.join }
assert 0, from_workers.size
assert 0, to_workers.size
assert_equal 0, from_workers.size
assert_equal 0, to_workers.size
end
end