diff options
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/compress/flate/example_test.go | 12 | ||||
| -rw-r--r-- | internal/testgit/repo_make_many_objects_history.go | 2 |
2 files changed, 5 insertions, 9 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 diff --git a/internal/testgit/repo_make_many_objects_history.go b/internal/testgit/repo_make_many_objects_history.go index 17cce1ad..970d1992 100644 --- a/internal/testgit/repo_make_many_objects_history.go +++ b/internal/testgit/repo_make_many_objects_history.go @@ -74,7 +74,7 @@ func (testRepo *TestRepo) makeManyObjectsTree(tb testing.TB, prefix string, i in lines := make([]string, 0, files) for j := range files { - body := []byte(fmt.Sprintf("%s-%04d-%02d\n%s\n", prefix, i, j, strings.Repeat("x", 160+(i+j)%96))) + body := fmt.Appendf(nil, "%s-%04d-%02d\n%s\n", prefix, i, j, strings.Repeat("x", 160+(i+j)%96)) blobID := testRepo.HashObject(tb, "blob", body) lines = append(lines, fmt.Sprintf("100644 blob %s\t%s_%04d_%02d.txt\n", blobID.String(), prefix, i, j)) } |
