Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jimassa committed Jul 10, 2024
1 parent af44a2d commit ed5c73d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/retina_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ func TestE2ERetina(t *testing.T) {

location := os.Getenv("AZURE_LOCATION")
if location == "" {
// Generate a cryptographically secure random index
nBig, err := rand.Int(rand.Reader, big.NewInt(int64(len(locations))))
var nBig *big.Int
nBig, err = rand.Int(rand.Reader, big.NewInt(int64(len(locations))))
if err != nil {
t.Fatalf("Failed to generate a secure random index: %v", err)
}
Expand Down

0 comments on commit ed5c73d

Please sign in to comment.