Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
berkayoz committed Mar 29, 2024
1 parent 05fb245 commit 79c06c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/tests/test_config_propagation.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def test_config_propagation(instances: List[harness.Instance]):
initial_node.exec(["k8s", "set", "dns.cluster-domain=integration.local"])

util.stubbornly(retries=5, delay_s=10).on(joining_cplane_node).until(
lambda p: f"--cluster-domain=integration.local" in p.stdout.decode()
lambda p: "--cluster-domain=integration.local" in p.stdout.decode()
).exec(["cat", "/var/snap/k8s/common/args/kubelet"])

util.stubbornly(retries=5, delay_s=10).on(joining_worker_node).until(
lambda p: f"--cluster-domain=integration.local" in p.stdout.decode()
lambda p: "--cluster-domain=integration.local" in p.stdout.decode()
).exec(["cat", "/var/snap/k8s/common/args/kubelet"])

0 comments on commit 79c06c4

Please sign in to comment.