Unverified Commit 11170936 authored by Steven Allen's avatar Steven Allen Committed by GitHub

Merge pull request #105 from libp2p/fix-circleci

Fix networking related test failures
parents d780c820 9db5d015
......@@ -150,7 +150,7 @@ func TestSimultDials(t *testing.T) {
func newSilentPeer(t *testing.T) (peer.ID, ma.Multiaddr, net.Listener) {
dst := testutil.RandPeerIDFatal(t)
lst, err := net.Listen("tcp", ":0")
lst, err := net.Listen("tcp4", ":0")
if err != nil {
t.Fatal(err)
}
......@@ -168,7 +168,6 @@ func newSilentPeer(t *testing.T) (peer.ID, ma.Multiaddr, net.Listener) {
}
func TestDialWait(t *testing.T) {
// t.Skip("skipping for another test")
t.Parallel()
ctx := context.Background()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment