Skip to content

Commit 1c51a3f

Browse files
Fix lint
1 parent 8a4e57e commit 1c51a3f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

test/integration/models/nodebalancer/test_nodebalancer.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import pytest
1111

12-
from linode_api4 import ApiError, LinodeClient, NodeBalancer, ExplicitNullValue
12+
from linode_api4 import ApiError, ExplicitNullValue, LinodeClient, NodeBalancer
1313
from linode_api4.objects import (
1414
NodeBalancerConfig,
1515
NodeBalancerNode,
@@ -100,7 +100,10 @@ def test_create_nb(test_linode_client, e2e_test_firewall):
100100
label = get_test_label(8)
101101

102102
nb = client.nodebalancer_create(
103-
region=TEST_REGION, label=label, firewall=e2e_test_firewall.id, client_udp_sess_throttle=5
103+
region=TEST_REGION,
104+
label=label,
105+
firewall=e2e_test_firewall.id,
106+
client_udp_sess_throttle=5,
104107
)
105108

106109
assert TEST_REGION, nb.region
@@ -156,6 +159,8 @@ def test_get_nb(test_linode_client, create_nb):
156159
create_nb.id,
157160
)
158161

162+
assert nb.id == create_nb.id
163+
159164

160165
def test_update_nb(test_linode_client, create_nb):
161166
nb = test_linode_client.load(

0 commit comments

Comments
 (0)