summaryrefslogtreecommitdiff
path: root/test/rss/test_trackback.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 23:09:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 23:09:39 +0000
commitef1ccbbc40cbfa512b2be0eeb7793c3532ff5e20 (patch)
tree6e5a90dde2b60164bc8cb2c6af97d994f0f7ea22 /test/rss/test_trackback.rb
parent40816e8ba28ffd52e6e02a258a8819cb288ab713 (diff)
* lib/ostruct.rb (new_ostruct_member): Object#send no longer call
private methods. [ruby-dev:27044] * test/rss/test_dublincore.rb, test/rss/test_trackback.rb, test/ruby/test_eval.rb, test/socket/test_socket.rb: ditto. * test/ruby/test_lambda (test_call_with_block): lambda makes new scope for formal block parameter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss/test_trackback.rb')
-rw-r--r--test/rss/test_trackback.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rss/test_trackback.rb b/test/rss/test_trackback.rb
index a3f023e887..2f92a0b1fe 100644
--- a/test/rss/test_trackback.rb
+++ b/test/rss/test_trackback.rb
@@ -114,7 +114,7 @@ EOR
@parents.each do |parent|
meth = "#{RSS::TRACKBACK_PREFIX}_#{name}_element"
meth << "s" if name == :about
- assert_equal(excepted, @rss.send(parent).send(meth))
+ assert_equal(excepted, @rss.send(parent).fcall(meth))
end
end