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 32be45c commit c0e5b20Copy full SHA for c0e5b20
tests/integration/vpc/conftest.py
@@ -13,8 +13,6 @@
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]
18
vpc_id = str(vpc_json["id"])
19
20
yield vpc_id
tests/integration/vpc/test_vpc.py
@@ -315,9 +315,6 @@ def test_create_subnet_with_ipv6_auto(test_vpc_wo_subnet):
315
ipv6_range = ipv6_entries[0].get("range", "")
316
assert isinstance(ipv6_range, str)
317
assert "/" in ipv6_range, f"Unexpected IPv6 CIDR format: {ipv6_range}"
318
- assert ipv6_range.startswith(
319
- "2600:"
320
- ), f"Unexpected IPv6 range value: {ipv6_range}"
321
322
323
def test_fails_to_create_vpc_with_invalid_ipv6_range():
0 commit comments