diff --git a/ChangeLog b/ChangeLog index 1cba2fe57c..d1b28fb8be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Nov 20 11:59:33 2007 Tanaka Akira + + * test/drb/test_drb.rb: rename TestRubyYield to TestDRbRubyYield to + avoid name crash with test/ruby/test_yield.rb. + TestRuby18Yield is renamed to TestDRbRuby18Yield too. + Tue Nov 20 03:24:42 2007 Masatoshi SEKI * lib/drb/extservm.rb: merged from ruby_1_8 branch. diff --git a/test/drb/test_drb.rb b/test/drb/test_drb.rb index 5719f60b80..1aecf74e44 100644 --- a/test/drb/test_drb.rb +++ b/test/drb/test_drb.rb @@ -113,7 +113,7 @@ class TestDRbYield < Test::Unit::TestCase end end -class TestRubyYield < TestDRbYield +class TestDRbRubyYield < TestDRbYield def echo_yield(*arg) yield(*arg) end @@ -145,7 +145,7 @@ class TestRubyYield < TestDRbYield end end -class TestRuby18Yield < TestRubyYield +class TestDRbRuby18Yield < TestDRbRubyYield class YieldTest18 def echo_yield(*arg, &proc) proc.call(*arg)