Skip to content

Commit 951d2f7

Browse files
committed
Remove print
1 parent cecb223 commit 951d2f7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

internal/core/concurrency.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package core
22

33
import (
4-
"fmt"
54
"os"
65
"runtime"
76
"strconv"
@@ -66,9 +65,7 @@ var testProgramConcurrency = sync.OnceValues(func() (concurrency Concurrency, ra
6665
if v == "" && !race.Enabled {
6766
v = "single"
6867
}
69-
c := parseConcurrency(v)
70-
fmt.Println(c, v)
71-
return c, v
68+
return parseConcurrency(v), v
7269
})
7370

7471
func TestProgramConcurrency() (concurrency Concurrency, raw string) {

0 commit comments

Comments
 (0)