Skip to content

Commit bde10d6

Browse files
committed
Apply code review suggestions
1 parent 3ddd4c7 commit bde10d6

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

test/integration/models/nodebalancer/test_nodebalancer.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
get_region,
77
get_token,
88
)
9-
from test.integration.filters.fixtures import (
10-
create_lke_cluster_with_related_nb,
11-
)
129
from test.integration.helpers import (
1310
get_test_label,
1411
wait_for_condition,
@@ -209,7 +206,9 @@ def is_related_nodebalancer_exist(client, cluster: LKECluster):
209206
return False
210207

211208

212-
def test_get_nb_with_lke_cluster(test_linode_client, create_lke_cluster_with_related_nb):
209+
def test_get_nb_with_lke_cluster(
210+
test_linode_client, create_lke_cluster_with_related_nb
211+
):
213212
wait_for_condition(
214213
10,
215214
600,
@@ -219,7 +218,9 @@ def test_get_nb_with_lke_cluster(test_linode_client, create_lke_cluster_with_rel
219218
)
220219
nb = test_linode_client.load(
221220
NodeBalancer,
222-
find_related_nodebalancer(test_linode_client, create_lke_cluster_with_related_nb),
221+
find_related_nodebalancer(
222+
test_linode_client, create_lke_cluster_with_related_nb
223+
),
223224
)
224225
assert nb.type == "common"
225226
assert nb.lke_cluster is not None

0 commit comments

Comments
 (0)