Merge pull request #41153 from thaJeztah/fix_linting

chrootarchive: fix "conversion from int to string yields a string of one rune"
This commit is contained in:
Tibor Vass 2020-06-25 15:02:38 -07:00 committed by GitHub
commit 13a56fee4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,8 @@ func TestChrootUntarWithHugeExcludesList(t *testing.T) {
// 65534 entries of 64-byte strings ~= 4MB of environment space which should overflow
// on most systems when passed via environment or command line arguments
excludes := make([]string, 65534)
for i := 0; i < 65534; i++ {
var i rune
for i = 0; i < 65534; i++ {
excludes[i] = strings.Repeat(string(i), 64)
}
options.ExcludePatterns = excludes