mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
src, misc: applied gofmt -s -w
Pending CL 113120043. LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/112290043
This commit is contained in:
parent
8d504c4e97
commit
8a23c0021e
16 changed files with 27 additions and 27 deletions
|
|
@ -1708,7 +1708,7 @@ func doConcurrentTest(t testing.TB, ct concurrentTest) {
|
|||
|
||||
for i := 0; i < maxProcs*2; i++ {
|
||||
go func() {
|
||||
for _ = range reqs {
|
||||
for range reqs {
|
||||
err := ct.test(t)
|
||||
if err != nil {
|
||||
wg.Done()
|
||||
|
|
@ -1750,7 +1750,7 @@ func manyConcurrentQueries(t testing.TB) {
|
|||
|
||||
for i := 0; i < maxProcs*2; i++ {
|
||||
go func() {
|
||||
for _ = range reqs {
|
||||
for range reqs {
|
||||
rows, err := stmt.Query()
|
||||
if err != nil {
|
||||
t.Errorf("error on query: %v", err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue