diff --git a/spec/std/socket_spec.cr b/spec/std/socket_spec.cr index 5c93ea1ef8b1..f037212464ef 100644 --- a/spec/std/socket_spec.cr +++ b/spec/std/socket_spec.cr @@ -50,12 +50,12 @@ describe "TCPSocket" do server.addr.ip_address.should eq("::") TCPSocket.open("localhost", 12345) do |client| - # The next line is actually dependant on the system configuration, + # The next lines are actually dependant on the system configuration, # so for now we keep it commented. Once we can force the family # we can uncomment it. # # client.addr.family.should eq("AF_INET") - client.addr.ip_address.should eq("127.0.0.1") + # client.addr.ip_address.should eq("127.0.0.1") sock = server.accept