Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Dec 23, 2016
1 parent d1159e5 commit 0dfd469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/std/socket_spec.cr
Expand Up @@ -316,13 +316,13 @@ describe TCPServer do
sock = Socket.tcp(Socket::Family::INET6)
sock.bind(Socket::IPAddress.new("::1", port))

TCPServer.open("::1", port) {}
TCPServer.open("::1", port) { }
end
end

it "allows to share the same port (SO_REUSEPORT)" do
TCPServer.open("::", 0) do |server|
TCPServer.open("::", server.local_address.port) {}
TCPServer.open("::", server.local_address.port) { }
end
end
end
Expand Down

0 comments on commit 0dfd469

Please sign in to comment.