test_tag_customer_gateway uncommented after ec2api fix

Change-Id: Iaf9c03821811f6b2524ae2a0630d89e3136fbecc
Signed-off-by: nik.kaluzhin <doupfish@gmail.com>
This commit is contained in:
nik.kaluzhin 2022-08-03 14:39:21 +03:00
parent f444d2e82b
commit 423c0d1dfe
1 changed files with 1 additions and 2 deletions

View File

@ -439,12 +439,11 @@ class TagTest(base.EC2TestCase):
self.cancelResourceCleanUp(dv_clean)
self.get_vpc_waiter().wait_delete(vpc_id)
@testtools.skip("will uncomment later after ec2-api fix")
@base.skip_without_vpc()
@decorators.idempotent_id('07b2f20d-6b26-4c3d-9d32-93f98f187d78')
def test_tag_customer_gateway(self):
data = self.client.create_customer_gateway(
Type='ipsec.1', PublicIp='198.51.100.77', BgpAsn=65000)
Type='ipsec.1', IpAddress='198.51.100.77', BgpAsn=65000)
cgw_id = data['CustomerGateway']['CustomerGatewayId']
self.addResourceCleanUp(self.client.delete_customer_gateway,
CustomerGatewayId=cgw_id)