summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-22 23:29:15 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-22 23:29:15 +0000
commit13b74c9cc671be495b438fdb41e2c7a8b075c190 (patch)
tree2c120587d5a7da1b533dc6d726a48ba2b52a1fc5 /test
parentafe1bbeb4e07cbdfa706e4be551c5980978d65f1 (diff)
Fix a typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_thread.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index ffaad96413..65636d9855 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -824,7 +824,7 @@ Thread.new(Thread.current) {|mth|
begin
q.push nil
mth.run
- Thead.pass until mth.stop?
+ Thread.pass until mth.stop?
p :mth_stopped # don't run if killed by rb_thread_terminate_all
ensure
puts "#{mth.alive?} #{mth.status} #{Thread.current.status}"