We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d24537 commit 2912619Copy full SHA for 2912619
tests/functional/vpc.py
@@ -60,7 +60,9 @@ def test_deploy_subnets(self):
60
self.compose_expressions([CFG_SUBNET])
61
self.depl.deploy(plan_only=True)
62
self.depl.deploy()
63
- subnet_resource = self.depl.get_typed_resource("subnet-test", "vpc-subnet", vpc.VPCSubnetState)
+ subnet_resource = self.depl.get_typed_resource(
64
+ "subnet-test", "vpc-subnet", vpc.VPCSubnetState
65
+ )
66
subnet = subnet_resource.get_client().describe_subnets(
67
SubnetIds=[subnet_resource._state["subnetId"]]
68
)
0 commit comments