From 496cf2d7573b722ca7fa730e87ed87f984f0a89e Mon Sep 17 00:00:00 2001 From: seki Date: Tue, 29 Mar 2005 13:14:47 +0000 Subject: use new_with instead of reinit [ruby=dev:25961] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rinda/test_rinda.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb index d2b2c7f17e..86e161e0cd 100644 --- a/test/rinda/test_rinda.rb +++ b/test/rinda/test_rinda.rb @@ -214,19 +214,19 @@ module TupleSpaceTestModule tmpl = Rinda::DRbObjectTemplate.new(/^druby:\/\/host:/) assert(tmpl === ro) - ro.reinit(12345, 1234) + ro = DRbObject.new_with(12345, 1234) assert(!(tmpl === ro)) - ro.reinit("druby://foo:12345", 1234) + ro = DRbObject.new_with("druby://foo:12345", 1234) assert(!(tmpl === ro)) tmpl = Rinda::DRbObjectTemplate.new(/^druby:\/\/(foo|bar):/) assert(tmpl === ro) - ro.reinit("druby://bar:12345", 1234) + ro = DRbObject.new_with("druby://bar:12345", 1234) assert(tmpl === ro) - ro.reinit("druby://baz:12345", 1234) + ro = DRbObject.new_with("druby://baz:12345", 1234) assert(!(tmpl === ro)) end -- cgit v1.2.3