diff options
Diffstat (limited to 'internal/compress')
| -rw-r--r-- | internal/compress/flate/example_test.go | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/internal/compress/flate/example_test.go b/internal/compress/flate/example_test.go index d541e0e1..ead6d090 100644 --- a/internal/compress/flate/example_test.go +++ b/internal/compress/flate/example_test.go @@ -166,9 +166,7 @@ func Example_synchronization() { rp, wp := io.Pipe() // Start a goroutine to act as the transmitter. - wg.Add(1) - go func() { - defer wg.Done() + wg.Go(func() { defer wp.Close() zw, err := flate.NewWriter(wp, flate.BestSpeed) @@ -195,12 +193,10 @@ func Example_synchronization() { if err := zw.Close(); err != nil { log.Fatal(err) } - }() + }) // Start a goroutine to act as the receiver. - wg.Add(1) - go func() { - defer wg.Done() + wg.Go(func() { zr := flate.NewReader(rp) @@ -229,7 +225,7 @@ func Example_synchronization() { if err := zr.Close(); err != nil { log.Fatal(err) } - }() + }) // Output: // Received 1 bytes: A |
