summaryrefslogtreecommitdiff
path: root/test/test_mutex_m.rb
diff options
context:
space:
mode:
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)