summaryrefslogtreecommitdiff
path: root/test/socket/test_udp.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 16:29:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 16:29:08 +0000
commit40816e8ba28ffd52e6e02a258a8819cb288ab713 (patch)
tree994a9e1616c360d4f567362d9013d0309dc7adbe /test/socket/test_udp.rb
parentdb05a0096a989a6b2c9fe1579909a368b0127026 (diff)
* test/socket/test_{udp,socket}.rb: revert unintentional commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket/test_udp.rb')
-rw-r--r--test/socket/test_udp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/socket/test_udp.rb b/test/socket/test_udp.rb
index 3f5f55a467..602adccf1c 100644
--- a/test/socket/test_udp.rb
+++ b/test/socket/test_udp.rb
@@ -21,7 +21,7 @@ class TestUDPSocket < Test::Unit::TestCase
def test_bind # [ruby-dev:25057]
s = UDPSocket.new
host = Object.new
- class << host; self end.fcall(:define_method, :to_str) {
+ class << host; self end.send(:define_method, :to_str) {
s.close
"127.0.0.1"
}