p2p: fix a close race in the dial test

This commit is contained in:
Péter Szilágyi 2015-06-09 22:26:26 +03:00
parent 7e58949c3f
commit 1cbbfbe7fa

View File

@ -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 {