1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-16 00:04:40 +00:00

build: fix gocritic lint issue assignop

This commit is contained in:
albertony
2024-05-31 14:37:21 +02:00
committed by Nick Craig-Wood
parent 59501fcdb6
commit c6d3714e73
10 changed files with 13 additions and 13 deletions

View File

@@ -88,7 +88,7 @@ func testConfigFile(t *testing.T, options []fs.Option, configFileName string) fu
func makeReadLine(answers []string) func() string {
i := 0
return func() string {
i = i + 1
i++
return answers[i-1]
}
}