Skip to content

Commit 32be45c

Browse files
committed
fix
1 parent 65bbc86 commit 32be45c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ def create_vpc_w_subnet():
225225
"--suppress-warnings",
226226
]
227227
)
228-
)
228+
)[0]
229229

230-
return vpc_json[0]
230+
return vpc_json
231231

232232

233233
@pytest.mark.smoke

tests/integration/vpc/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
@pytest.fixture
1414
def test_vpc_w_subnet():
1515
vpc_json = create_vpc_w_subnet()
16-
if isinstance(vpc_json, list):
17-
vpc_json = vpc_json[0]
16+
# if isinstance(vpc_json, list):
17+
# vpc_json = vpc_json[0]
1818
vpc_id = str(vpc_json["id"])
1919

2020
yield vpc_id

0 commit comments

Comments
 (0)