Skip to content

Commit 5d689ef

Browse files
committed
fix flake issues
Signed-off-by: Chris Snow <[email protected]>
1 parent a73f453 commit 5d689ef

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/library/k8s_cluster_test.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,13 @@ def test_get_k8sclusters(self, mock_get, mock_post):
213213

214214
self.assertEqual(
215215
get_client().k8s_cluster.list().tabulate(["description", "id"]),
216-
("+-------------+-----------------------+\n"
217-
"| description | id |\n"
218-
"+-------------+-----------------------+\n"
219-
"| my cluster | /api/v2/k8scluster/20 |\n"
220-
"+-------------+-----------------------+",)
216+
(
217+
"+-------------+-----------------------+\n" # noqa : E128
218+
"| description | id |\n"
219+
"+-------------+-----------------------+\n"
220+
"| my cluster | /api/v2/k8scluster/20 |\n"
221+
"+-------------+-----------------------+",
222+
),
221223
)
222224

223225

0 commit comments

Comments
 (0)