aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_mutex_m.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-30 06:22:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-30 06:22:30 +0000
commit4b298ad77a8388f0aae62daeca66659a8effeade (patch)
tree163674f4123bf461a86b4f6fd1de964297057bae /test/test_mutex_m.rb
parent0df79477bd2cd534ad2d89bfdbf9708c64b59eed (diff)
downloadruby-4b298ad77a8388f0aae62daeca66659a8effeade.tar.gz
Use qualified names
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_mutex_m.rb')
-rw-r--r--test/test_mutex_m.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_mutex_m.rb b/test/test_mutex_m.rb
index e31c086f01..0365265b8c 100644
--- a/test/test_mutex_m.rb
+++ b/test/test_mutex_m.rb
@@ -8,7 +8,7 @@ class TestMutexM < Test::Unit::TestCase
o = Object.new
o.instance_variable_set(:@foo, nil)
o.extend(Mutex_m)
- c = ConditionVariable.new
+ c = Thread::ConditionVariable.new
t = Thread.start {
o.synchronize do
until foo = o.instance_variable_get(:@foo)