From 3c9d907faa2171c8d17aac4d2cc2b14cd3b82027 Mon Sep 17 00:00:00 2001 From: Benjamin Schimke Date: Thu, 19 Sep 2024 13:14:44 +0200 Subject: [PATCH] fix format --- tests/integration/tests/test_clustering.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/integration/tests/test_clustering.py b/tests/integration/tests/test_clustering.py index f7fe2b4af..4650b15b9 100644 --- a/tests/integration/tests/test_clustering.py +++ b/tests/integration/tests/test_clustering.py @@ -137,7 +137,13 @@ def test_skip_services_stop_on_remove(instances: List[harness.Instance]): ).stdout.split("\n")[1:-1] print(services) for service in services: - for expected_active_service in ["containerd", "k8sd", "kubelet", "kube-proxy", "k8s-apiserver-proxy"]: + for expected_active_service in [ + "containerd", + "k8sd", + "kubelet", + "kube-proxy", + "k8s-apiserver-proxy", + ]: if expected_active_service in service: assert ( " active " in service