summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-12 12:29:44 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-12 12:29:44 +0000
commitbaf52faa03111ff94aafd48ae166bc90bbe6368a (patch)
tree3a52fa3d219087d6b058adb3b5e74b2c9a2f1931 /test
parent7fc0105f653157e11a4e8747dea65d0197097359 (diff)
merge revision(s) 40652:
fix a typo git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/rake/test_rake_thread_pool.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rake/test_rake_thread_pool.rb b/test/rake/test_rake_thread_pool.rb
index 90c8bf577a..cc8163a9e0 100644
--- a/test/rake/test_rake_thread_pool.rb
+++ b/test/rake/test_rake_thread_pool.rb
@@ -46,7 +46,7 @@ class TestRakeTestThreadPool < Rake::TestCase
pool = ThreadPool.new(2)
a = 'a'
b = 'b'
- c = 5 # 5 throws an execption with 5.dup. It should be ignored
+ c = 5 # 5 throws an exception with 5.dup. It should be ignored
pool.future(a,c){ |a_var,ignore| a_var.capitalize!; b.capitalize! }
pool.join
assert_equal 'a', a