Skip to content

Commit

Permalink
Merge pull request #105 from libp2p/fix-circleci
Browse files Browse the repository at this point in the history
Fix networking related test failures
  • Loading branch information
Stebalien committed Feb 19, 2019
2 parents 730e177 + e7afaa3 commit 2b3c820
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions p2p/net/swarm/dial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -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()
Expand Down

0 comments on commit 2b3c820

Please sign in to comment.