Skip to content

Commit 4cc7705

Browse files
apocelipesgopherbot
authored andcommitted
testing: use strings.SplitSeq and bytes.SplitSeq
To simplify the code. This is a follow-up for the CL 646216. Change-Id: Ib09d1074a783482fb293527e9f1abeb3c02137c3 GitHub-Last-Rev: 2e7a6ad GitHub-Pull-Request: #71568 Reviewed-on: https://go-review.googlesource.com/c/go/+/646755 Reviewed-by: Jorropo <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Salah (Globlost) <[email protected]> Reviewed-by: Damien Neil <[email protected]> Auto-Submit: Damien Neil <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
1 parent 51bf2cf commit 4cc7705

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/testing/slogtest/example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func Example_parsing() {
2323

2424
results := func() []map[string]any {
2525
var ms []map[string]any
26-
for _, line := range bytes.Split(buf.Bytes(), []byte{'\n'}) {
26+
for line := range bytes.SplitSeq(buf.Bytes(), []byte{'\n'}) {
2727
if len(line) == 0 {
2828
continue
2929
}

src/testing/testing.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2501,7 +2501,7 @@ func (m *M) stopAlarm() {
25012501
}
25022502

25032503
func parseCpuList() {
2504-
for _, val := range strings.Split(*cpuListStr, ",") {
2504+
for val := range strings.SplitSeq(*cpuListStr, ",") {
25052505
val = strings.TrimSpace(val)
25062506
if val == "" {
25072507
continue

src/testing/testing_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ func TestRunningTestsInCleanup(t *testing.T) {
894894

895895
func parseRunningTests(out []byte) (runningTests []string, ok bool) {
896896
inRunningTests := false
897-
for _, line := range strings.Split(string(out), "\n") {
897+
for line := range strings.SplitSeq(string(out), "\n") {
898898
if inRunningTests {
899899
// Package testing adds one tab, the panic printer adds another.
900900
if trimmed, ok := strings.CutPrefix(line, "\t\t"); ok {

0 commit comments

Comments
 (0)