fix a goroutine leak in transport_test.go

This commit is contained in:
iamqizhao 2016-07-19 13:52:52 -07:00
Родитель 01ed6b1741
Коммит 5c2b3fa6c1
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -438,7 +438,11 @@ func TestMaxStreams(t *testing.T) {
for {
select {
case <-time.After(5 * time.Millisecond):
ch <- 0
select {
case ch <- 0:
case <-ready:
return
}
case <-time.After(5 * time.Second):
close(done)
return