We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bbc86 commit 32be45cCopy full SHA for 32be45c
tests/integration/conftest.py
@@ -225,9 +225,9 @@ def create_vpc_w_subnet():
225
"--suppress-warnings",
226
]
227
)
228
- )
+ )[0]
229
230
- return vpc_json[0]
+ return vpc_json
231
232
233
@pytest.mark.smoke
tests/integration/vpc/conftest.py
@@ -13,8 +13,8 @@
13
@pytest.fixture
14
def test_vpc_w_subnet():
15
vpc_json = create_vpc_w_subnet()
16
- if isinstance(vpc_json, list):
17
- vpc_json = vpc_json[0]
+ # if isinstance(vpc_json, list):
+ # vpc_json = vpc_json[0]
18
vpc_id = str(vpc_json["id"])
19
20
yield vpc_id
0 commit comments