Skip to content

Commit c16f56c

Browse files
committed
Modify test names to indicate that test is expected to fail
1 parent aa6f02a commit c16f56c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

test/integration/models/nodebalancer/test_nodebalancer.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def test_nb_with_frontend_ipv4_only_in_single_stack_vpc(
370370
nb.delete()
371371

372372

373-
def test_nb_with_frontend_ipv6_only_in_single_stack_vpc(
373+
def test_nb_with_frontend_ipv6_in_single_stack_vpc_fail(
374374
test_linode_client, create_vpc_with_subnet_ipv4
375375
):
376376
client = test_linode_client
@@ -394,7 +394,7 @@ def test_nb_with_frontend_ipv6_only_in_single_stack_vpc(
394394
assert "No IPv6 subnets available in VPC" in error_msg
395395

396396

397-
def test_nb_with_frontend_and_default_type(
397+
def test_nb_with_frontend_and_default_type_fail(
398398
test_linode_client, create_vpc_with_subnet
399399
):
400400
client = test_linode_client
@@ -417,17 +417,14 @@ def test_nb_with_frontend_and_default_type(
417417
[PREMIUM_40GB_REGIONS],
418418
indirect=True,
419419
)
420-
def test_nb_with_frontend_and_premium40gb_type(
420+
def test_nb_with_premium40gb_type(
421421
test_linode_client, create_vpc_with_subnet_in_premium_region
422422
):
423423
client = test_linode_client
424424

425425
nb = client.nodebalancer_create(
426426
region=create_vpc_with_subnet_in_premium_region[0].region,
427427
label=get_test_label(length=8),
428-
frontend_vpcs=[
429-
{"subnet_id": create_vpc_with_subnet_in_premium_region[1].id}
430-
],
431428
type="premium_40gb",
432429
)
433430
assert nb.type == "premium_40gb"

0 commit comments

Comments
 (0)