Skip to content

Commit b00142a

Browse files
committed
Replace vpcs with backend_vpcs to be passed to POST /nodebalancers
1 parent 6c4292d commit b00142a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/models/nodebalancer/test_nodebalancer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def test_nb_with_backend_only(test_linode_client, create_vpc_with_subnet):
305305
nb = client.nodebalancer_create(
306306
region=create_vpc_with_subnet[0].region,
307307
label=label,
308-
vpcs=[
308+
backend_vpcs=[
309309
{
310310
"vpc_id": create_vpc_with_subnet[0].id,
311311
"subnet_id": create_vpc_with_subnet[1].id,
@@ -471,7 +471,7 @@ def test_nb_with_frontend_and_backend_in_different_vpcs(
471471
nb = client.nodebalancer_create(
472472
region=region,
473473
label=label,
474-
vpcs=[{"vpc_id": vpc_backend, "subnet_id": subnet_backend}],
474+
backend_vpcs=[{"vpc_id": vpc_backend, "subnet_id": subnet_backend}],
475475
frontend_vpcs=[
476476
{
477477
"subnet_id": subnet_frontend.id,

0 commit comments

Comments
 (0)