1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Use underscore-begging name for dummy variables to suppress warning

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-12-05 15:12:58 +00:00
parent 7424e9e8dd
commit 05db61c25d

View file

@ -575,7 +575,7 @@ class TestThread < Test::Unit::TestCase
def test_async_interrupt_with_return
assert_nothing_raised do
for_test_async_interrupt_with_return
dummy_for_check_ints=nil
_dummy_for_check_ints=nil
end
end
@ -588,7 +588,7 @@ class TestThread < Test::Unit::TestCase
}
rescue
end
dummy_for_check_ints=nil
_dummy_for_check_ints=nil
end
end