Explorar el Código

xfer: fix a simple goroutine leak in unit test

Signed-off-by: Ziheng Liu <lzhfromustc@gmail.com>
Ziheng Liu hace 3 años
padre
commit
3dda7311cd
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      distribution/xfer/download_test.go

+ 1 - 0
distribution/xfer/download_test.go

@@ -350,6 +350,7 @@ func TestCancelledDownload(t *testing.T) {
 	descriptors := downloadDescriptors(nil)
 	_, _, err := ldm.Download(ctx, *image.NewRootFS(), runtime.GOOS, descriptors, progress.ChanOutput(progressChan))
 	if err != context.Canceled {
+		close(progressChan)
 		t.Fatal("expected download to be cancelled")
 	}