diff --git a/pkg/testhelpers/helpers.go b/pkg/testhelpers/helpers.go index 5b1f0dffb..2666fa73e 100644 --- a/pkg/testhelpers/helpers.go +++ b/pkg/testhelpers/helpers.go @@ -20,7 +20,7 @@ const IntegrationTestAccountID = 3806526 // RandSeq is used to get a string made up of n random lowercase letters. func RandSeq(n int) string { - // commented this line out, since this no longer works with go1.21 and needs no alternative, as seeding isn't needed + // commented the following line out, since this no longer works with go1.21 and needs no alternative, as seeding isn't needed // rand.Seed(time.Now().UnixNano()) b := make([]rune, n) for i := range b {