brontide: within tests, listen on localhost rather than all interfaces

This commit is contained in:
Olaoluwa Osuntokun 2017-11-01 15:30:44 -07:00
parent eb84d34b8d
commit b3000b621b
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

View File

@ -27,7 +27,7 @@ func establishTestConnection() (net.Conn, net.Conn, func(), error) {
// Having a port of ":0" means a random port, and interface will be
// chosen for our listener.
addr := ":0"
addr := "localhost:0"
// Our listener will be local, and the connection remote.
listener, err := NewListener(localPriv, addr)