fix build

This commit is contained in:
chrislu
2025-08-27 15:05:06 -07:00
parent 02ef812375
commit 5a46e9bcb2
+1 -1
View File
@@ -656,7 +656,7 @@ func (f *S3IAMTestFramework) GenerateUniqueBucketName(prefix string) string {
testName = strings.ReplaceAll(testName, "_", "-")
// Add random suffix to handle parallel tests
randomSuffix := mathrand.IntN(10000)
randomSuffix := mathrand.Intn(10000)
return fmt.Sprintf("%s-%s-%d", prefix, testName, randomSuffix)
}