Skip to content

Commit

Permalink
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ruby/library/socket/socket/getaddrinfo_spec.rb
Original file line number Diff line number Diff line change
@@ -106,7 +106,7 @@
["AF_INET6", 9, "::1", "::1", Socket::AF_INET6, Socket::SOCK_STREAM, Socket::IPPROTO_TCP],
["AF_INET6", 9, "0:0:0:0:0:0:0:1", "0:0:0:0:0:0:0:1", Socket::AF_INET6, Socket::SOCK_STREAM, Socket::IPPROTO_TCP]
]
res.each { |a| expected.should include (a) }
res.each { |a| expected.should include(a) }
end
end
end
2 changes: 2 additions & 0 deletions spec/tags/ruby/language/constants_tags.txt
Original file line number Diff line number Diff line change
@@ -5,3 +5,5 @@ fails:Module#private_constant marked constants in a class cannot be reopened as
fails(2.3 feature):Constant resolution within a singleton class (class << obj) uses its own namespace for each object
fails(2.3 feature):Constant resolution within a singleton class (class << obj) uses its own namespace for nested modules
fails(2.3 feature):Constant resolution within a singleton class (class << obj) allows nested modules to have proper resolution
fails:Module#private_constant marked constants in a module cannot be reopened as a module from scope where constant would be private
fails:Module#private_constant marked constants in a module cannot be reopened as a class from scope where constant would be private
1 change: 1 addition & 0 deletions spec/tags/ruby/library/socket/socket/getaddrinfo_tags.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
windows:Socket#getaddrinfo accepts empty addresses for IPv6 passive sockets
windows:Socket#getaddrinfo accepts empty addresses for IPv6 non-passive sockets
fails:Socket#getaddrinfo accepts empty addresses for IPv6 non-passive sockets

0 comments on commit 8048c3e

Please sign in to comment.