Skip to content

Commit 5015ed5

Browse files
committed
integration_test: Make gopls happier
1 parent 602bf11 commit 5015ed5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/multibuild/integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ multibuild-specific options:
4343

4444
if string(out) != expected {
4545
t.Log("Expected:")
46-
for _, line := range strings.Split(expected, "\n") {
46+
for line := range strings.SplitSeq(expected, "\n") {
4747
t.Log(line)
4848
}
4949
t.Log("Got")
50-
for _, line := range strings.Split(string(out), "\n") {
50+
for line := range strings.SplitSeq(string(out), "\n") {
5151
t.Log(line)
5252
}
5353
t.Fatalf("output mismatch")

0 commit comments

Comments
 (0)