Skip to content

Commit

Permalink
addressed review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Harshit Gangal <[email protected]>
  • Loading branch information
harshit-gangal committed Sep 27, 2023
1 parent a047a98 commit 96c2a77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions go/test/endtoend/vtgate/queries/benchmark/benchmark_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2022 The Vitess Authors.
Copyright 2023 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -52,7 +52,7 @@ func getRandomString(size int) string {
var str strings.Builder

for i := 0; i < size; i++ {
str.WriteByte(byte((rand.Int() % 26) + 97))
str.WriteByte(byte(rand.Intn(27) + 97))
}
return str.String()
}
Expand Down
2 changes: 1 addition & 1 deletion go/test/endtoend/vtgate/queries/benchmark/main_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2022 The Vitess Authors.
Copyright 2023 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 96c2a77

Please sign in to comment.