aboutsummaryrefslogtreecommitdiffstats
path: root/test/socket/test_unix.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-05 11:01:43 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-05 11:01:43 +0000
commit88f04bdd32fcbb2333f6b034e98f7f398e97604c (patch)
tree8dcdb94addac56011a8472c5ec63210cf5481771 /test/socket/test_unix.rb
parentb3e665760e06b90102a8a9594bfbdbe73234f213 (diff)
downloadruby-88f04bdd32fcbb2333f6b034e98f7f398e97604c.tar.gz
* ext/socket: AddrInfo is renamed to Addrinfo. [ruby-dev:37876]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket/test_unix.rb')
-rw-r--r--test/socket/test_unix.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/socket/test_unix.rb b/test/socket/test_unix.rb
index 1416b75fa6..0ea7f5f5be 100644
--- a/test/socket/test_unix.rb
+++ b/test/socket/test_unix.rb
@@ -123,7 +123,7 @@ class TestUNIXSocket < Test::Unit::TestCase
else
# struct msghdr is POSIX/4.4BSD style (msg_control field).
assert_equal(0, flags & (Socket::MSG_TRUNC|Socket::MSG_CTRUNC))
- assert_instance_of(AddrInfo, srcaddr)
+ assert_instance_of(Addrinfo, srcaddr)
assert_instance_of(Array, ctls)
assert_equal(1, ctls.length)
assert_instance_of(Socket::AncillaryData, ctls[0])