aboutsummaryrefslogtreecommitdiffstats
path: root/test/drb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-19 14:49:19 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-19 14:49:19 +0000
commit181815422b02bccc24a98dd2637a6e1da8d5a43e (patch)
treef4ed45aca31015fe22c4a217411080e7250f8d83 /test/drb
parentaab70ee3d3d9f16f7299d02536ea751ee58abf62 (diff)
downloadruby-181815422b02bccc24a98dd2637a6e1da8d5a43e.tar.gz
suppress warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/drb')
-rw-r--r--test/drb/ut_drb.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/drb/ut_drb.rb b/test/drb/ut_drb.rb
index f5720cfca2..da4ca10791 100644
--- a/test/drb/ut_drb.rb
+++ b/test/drb/ut_drb.rb
@@ -32,6 +32,8 @@ class DRbEx
class UError < RuntimeError; end
def initialize
+ @xary2_hash = nil
+ @hash = nil
@hello = 'hello'
end
attr_reader :hello
@@ -155,6 +157,6 @@ if __FILE__ == $0
DRb::DRbServer.default_argc_limit(8)
DRb::DRbServer.default_load_limit(4096)
DRb.start_service('druby://localhost:0', DRbEx.new)
- es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
+ DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
end