From: sivchari Date: Thu, 6 May 2021 07:40:22 +0000 (+0000) Subject: runtime: gofmt proc_test.go X-Git-Tag: go1.17beta1~226 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ba0f8ce50f;p=gostls13.git runtime: gofmt proc_test.go Change-Id: I09a2be64e96fe85d84560728814af74b234d7210 GitHub-Last-Rev: bc881ea0022326fcc35e0356a79634fde00efd2a GitHub-Pull-Request: golang/go#45929 Reviewed-on: https://go-review.googlesource.com/c/go/+/316409 Reviewed-by: Emmanuel Odeke Run-TryBot: Emmanuel Odeke TryBot-Result: Go Bot Trust: Michael Pratt --- diff --git a/src/runtime/proc_test.go b/src/runtime/proc_test.go index 01152dff76..53cafe8907 100644 --- a/src/runtime/proc_test.go +++ b/src/runtime/proc_test.go @@ -734,7 +734,7 @@ func BenchmarkCreateGoroutinesSingle(b *testing.B) { var wg sync.WaitGroup wg.Add(b.N) for i := 0; i < b.N; i++ { - go func(){ + go func() { wg.Done() }() }