Skip to content

Commit 055aab1

Browse files
authored
test: Update pr_test.go to stop passing in invalid var (#746)
1 parent 34e8782 commit 055aab1

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/pr_test.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-res
3434
// Setting "add_atracker_route" to false for VPC and VSI tests to avoid hitting AT route quota, right now its 4 routes per account.
3535
const add_atracker_route = false
3636

37-
// Setting "service_endpoints" to `private` to test support for 'private' service_endpoints (schematics have access to private network).
38-
const service_endpoints = "private"
39-
4037
var sharedInfoSvc *cloudinfo.CloudInfoService
4138
var permanentResources map[string]interface{}
4239

@@ -567,7 +564,6 @@ func TestRunVSIPatternSchematics(t *testing.T) {
567564
{Name: "prefix", Value: options.Prefix, DataType: "string"},
568565
{Name: "ssh_public_key", Value: sshPublicKey(t), DataType: "string"},
569566
{Name: "add_atracker_route", Value: add_atracker_route, DataType: "bool"},
570-
{Name: "service_endpoints", Value: service_endpoints, DataType: "string"},
571567
}
572568

573569
err := options.RunSchematicTest()
@@ -589,7 +585,6 @@ func TestRunRoksPatternSchematics(t *testing.T) {
589585
{Name: "region", Value: options.Region, DataType: "string"},
590586
{Name: "prefix", Value: options.Prefix, DataType: "string"},
591587
{Name: "tags", Value: options.Tags, DataType: "list(string)"},
592-
{Name: "service_endpoints", Value: service_endpoints, DataType: "string"},
593588
}
594589

595590
err := options.RunSchematicTest()
@@ -610,7 +605,6 @@ func TestRunVPCPatternSchematics(t *testing.T) {
610605
{Name: "prefix", Value: options.Prefix, DataType: "string"},
611606
{Name: "tags", Value: options.Tags, DataType: "list(string)"},
612607
{Name: "add_atracker_route", Value: add_atracker_route, DataType: "bool"},
613-
{Name: "service_endpoints", Value: service_endpoints, DataType: "string"},
614608
}
615609

616610
err := options.RunSchematicTest()

0 commit comments

Comments
 (0)