p2p: fix a close race in the dial test

pull/1221/head
Péter Szilágyi 10 years ago
parent 7e58949c3f
commit 1cbbfbe7fa
  1. 3
      p2p/server_test.go

@ -117,7 +117,6 @@ func TestServerDial(t *testing.T) {
t.Error("accept error:", err)
return
}
conn.Close()
accepted <- conn
}()
@ -134,6 +133,8 @@ func TestServerDial(t *testing.T) {
select {
case conn := <-accepted:
defer conn.Close()
select {
case peer := <-connected:
if peer.ID() != remid {

Loading…
Cancel
Save