Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Sep 19, 2024
1 parent a87c656 commit 3c9d907
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/integration/tests/test_clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3c9d907

Please sign in to comment.