Skip to content

Commit

Permalink
updating const var name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulsishah committed Jul 26, 2023
1 parent 06df4e9 commit 7e92bf8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ import (
"github.com/googlecloudplatform/gcsfuse/tools/integration_tests/util/setup"
)

const BucketForDynamicMountingTest = "gcsfuse-dynamic-mounting-test_"
const PrefixBucketForDynamicMountingTest = "gcsfuse-dynamic-mounting-test_"
const Charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"

var seededRand *rand.Rand = rand.New(rand.NewSource(time.Now().UnixNano()))
var testBucketForDynamicMounting = BucketForDynamicMountingTest + generateRandomString(5)
var testBucketForDynamicMounting = PrefixBucketForDynamicMountingTest + generateRandomString(5)

func mountGcsfuseWithDynamicMounting(flags []string) (err error) {
defaultArg := []string{"--debug_gcs",
Expand Down

0 comments on commit 7e92bf8

Please sign in to comment.