aboutsummaryrefslogtreecommitdiffstats
path: root/test/monitor
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-21 01:53:38 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-21 01:53:38 +0000
commit569172765302d6b60a64e6499ba95973cd756ea3 (patch)
tree247c9dad7cd42a8b6925c4dfee629acd26518977 /test/monitor
parentd691a28d914e7e5152b7dc3f47da1baaf684fbfb (diff)
downloadruby-569172765302d6b60a64e6499ba95973cd756ea3.tar.gz
* test/monitor/test_monitor.rb: remove unused variabels.
* test/resolv/test_dns.rb: ditto. * test/rexml/test_functions.rb: ditto. * test/rss/test_setup_maker_itunes.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/monitor')
-rw-r--r--test/monitor/test_monitor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monitor/test_monitor.rb b/test/monitor/test_monitor.rb
index 8591570b70..1d70222b44 100644
--- a/test/monitor/test_monitor.rb
+++ b/test/monitor/test_monitor.rb
@@ -83,7 +83,7 @@ class TestMonitor < Test::Unit::TestCase
def test_try_enter
queue1 = Queue.new
queue2 = Queue.new
- th = Thread.start {
+ Thread.start {
queue1.deq
@monitor.enter
queue2.enq(nil)