We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602bf11 commit 5015ed5Copy full SHA for 5015ed5
1 file changed
cmd/multibuild/integration_test.go
@@ -43,11 +43,11 @@ multibuild-specific options:
43
44
if string(out) != expected {
45
t.Log("Expected:")
46
- for _, line := range strings.Split(expected, "\n") {
+ for line := range strings.SplitSeq(expected, "\n") {
47
t.Log(line)
48
}
49
t.Log("Got")
50
- for _, line := range strings.Split(string(out), "\n") {
+ for line := range strings.SplitSeq(string(out), "\n") {
51
52
53
t.Fatalf("output mismatch")
0 commit comments