final fix after merge with master
This commit is contained in:
parent
02d3e1c12e
commit
35ceeb15f4
|
@ -75,7 +75,6 @@ func TestAccAWSCustomerGateway_disappears(t *testing.T) {
|
|||
rInt := acctest.RandInt()
|
||||
rBgpAsn := acctest.RandIntRange(64512, 65534)
|
||||
var gateway ec2.CustomerGateway
|
||||
randInt := acctest.RandInt()
|
||||
resource.Test(t, resource.TestCase{
|
||||
PreCheck: func() { testAccPreCheck(t) },
|
||||
Providers: testAccProviders,
|
||||
|
|
|
@ -81,6 +81,7 @@ func TestAccAWSVpnConnection_withoutStaticRoutes(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestAccAWSVpnConnection_disappears(t *testing.T) {
|
||||
rBgpAsn := acctest.RandIntRange(64512, 65534)
|
||||
var vpn ec2.VpnConnection
|
||||
|
||||
resource.Test(t, resource.TestCase{
|
||||
|
@ -89,7 +90,7 @@ func TestAccAWSVpnConnection_disappears(t *testing.T) {
|
|||
CheckDestroy: testAccAwsVpnConnectionDestroy,
|
||||
Steps: []resource.TestStep{
|
||||
{
|
||||
Config: testAccAwsVpnConnectionConfig,
|
||||
Config: testAccAwsVpnConnectionConfig(rBgpAsn),
|
||||
Check: resource.ComposeTestCheckFunc(
|
||||
testAccAwsVpnConnection(
|
||||
"aws_vpc.vpc",
|
||||
|
|
Loading…
Reference in New Issue