@@ -33,12 +33,14 @@ func TestExamplesComplete(t *testing.T) {
33
33
// Run `terraform output` to get the value of an output variable
34
34
privateSubnetCidrs := terraform .OutputList (t , terraformOptions , "private_subnet_cidrs" )
35
35
// Verify we're getting back the outputs we expect
36
- assert .Equal (t , []string {"172.16.0.0/19" , "172.16.32.0/19" }, privateSubnetCidrs )
36
+ // assert.Equal(t, []string{"172.16.0.0/19", "172.16.32.0/19"}, privateSubnetCidrs)
37
+ assert .Equal (t , []string {"172.16.0.0/19" }, privateSubnetCidrs )
37
38
38
39
// Run `terraform output` to get the value of an output variable
39
40
publicSubnetCidrs := terraform .OutputList (t , terraformOptions , "public_subnet_cidrs" )
40
41
// Verify we're getting back the outputs we expect
41
- assert .Equal (t , []string {"172.16.96.0/19" , "172.16.128.0/19" }, publicSubnetCidrs )
42
+ // assert.Equal(t, []string{"172.16.96.0/19", "172.16.128.0/19"}, publicSubnetCidrs)
43
+ assert .Equal (t , []string {"172.16.96.0/19" }, publicSubnetCidrs )
42
44
43
45
// Run `terraform output` to get the value of an output variable
44
46
domainHostname := terraform .Output (t , terraformOptions , "domain_hostname" )
@@ -59,5 +61,5 @@ func TestExamplesComplete(t *testing.T) {
59
61
// Run `terraform output` to get the value of an output variable
60
62
lambdaFunctionArn := terraform .Output (t , terraformOptions , "lambda_function_arn" )
61
63
// Verify we're getting back the outputs we expect
62
- assert .Contains (t , lambdaFunctionArn , "function:eg-test-app- elasticsearch-cleanup" )
64
+ assert .Contains (t , lambdaFunctionArn , "function:eg-test-elasticsearch-cleanup" )
63
65
}
0 commit comments