Skip to content

Commit 2f61539

Browse files
committed
test: add workaround
1 parent 83c7954 commit 2f61539

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

tests/pr_test.go

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
)
1212

1313
// Use existing resource group
14-
const resourceGroup = "geretain-test-app-config"
1514
const completeExampleDir = "examples/complete"
1615

1716
func setupOptions(t *testing.T, prefix string, dir string) *testhelper.TestOptions {
@@ -23,11 +22,10 @@ func setupOptions(t *testing.T, prefix string, dir string) *testhelper.TestOptio
2322
}
2423
rand.New(rand.NewSource(time.Now().Unix()))
2524
options := testhelper.TestOptionsDefaultWithVars(&testhelper.TestOptions{
26-
Testing: t,
27-
TerraformDir: dir,
28-
Prefix: prefix,
29-
Region: validRegions[rand.Intn(len(validRegions))],
30-
ResourceGroup: resourceGroup,
25+
Testing: t,
26+
TerraformDir: dir,
27+
Prefix: prefix,
28+
Region: validRegions[rand.Intn(len(validRegions))],
3129
})
3230
return options
3331
}

0 commit comments

Comments
 (0)