From c4500c5b35ce7b7ec49e900649c562ed69a1a2d2 Mon Sep 17 00:00:00 2001 From: chrislu Date: Wed, 27 Aug 2025 15:09:10 -0700 Subject: [PATCH] Update s3_copying_test.go --- test/s3/copying/s3_copying_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/s3/copying/s3_copying_test.go b/test/s3/copying/s3_copying_test.go index 75ea161d3..4bad01de4 100644 --- a/test/s3/copying/s3_copying_test.go +++ b/test/s3/copying/s3_copying_test.go @@ -91,7 +91,7 @@ func waitForS3Service(t *testing.T, client *s3.Client, timeout time.Duration) { func getNewBucketName() string { timestamp := time.Now().UnixNano() // Add random suffix to prevent collisions when tests run quickly - randomSuffix := mathrand.IntN(100000) + randomSuffix := mathrand.Intn(100000) return fmt.Sprintf("%s%d-%d", defaultConfig.BucketPrefix, timestamp, randomSuffix) }