Skip to content

Commit 9d9802a

Browse files
committed
fix
1 parent 721459b commit 9d9802a

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

tests/integration/lke/test_clusters.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,15 @@ def test_lke_cluster_list():
7777
)
7878
lines = res.splitlines()
7979

80-
headers = ["label", "k8s_version", "tier", "apl_enabled"]
80+
headers = [
81+
"label",
82+
"k8s_version",
83+
"tier",
84+
"apl_enabled",
85+
"vpc_id",
86+
"subnet_id",
87+
"stack_type",
88+
]
8189
assert_headers_in_lines(headers, lines)
8290

8391

@@ -89,7 +97,15 @@ def test_view_lke_cluster(lke_cluster):
8997
+ ["cluster-view", cluster_id, "--text", "--delimiter=,"]
9098
)
9199
lines = res.splitlines()
92-
headers = ["label", "k8s_version", "tier"]
100+
headers = [
101+
"label",
102+
"k8s_version",
103+
"tier",
104+
"apl_enabled",
105+
"vpc_id",
106+
"subnet_id",
107+
"stack_type",
108+
]
93109
assert_headers_in_lines(headers, lines)
94110
data_rows = lines[1:]
95111
assert data_rows, "No cluster data returned from cluster-view command"

0 commit comments

Comments
 (0)