runtime: gofmt proc_test.go

This commit is contained in:
sivchari 2021-05-06 16:32:04 +09:00
parent d75fbac54d
commit bc881ea002
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}()
}