Skip to content

Commit

Permalink
Fix double quotes (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Jul 31, 2024
1 parent 902b4bd commit b40fdcf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def check_controllers_running(node, cnames, namespace=""):
time.sleep(0.1)
assert all(
found.values()
), f"Controller node(s) not found: {', '.join(["ns: " + namespace_api + ", ctrl:" + cname for cname, is_found in found.items() if not is_found])}, but seeing {node.get_node_names_and_namespaces()}"
), f"Controller node(s) not found: {', '.join(['ns: ' + namespace_api + ', ctrl:' + cname for cname, is_found in found.items() if not is_found])}, but seeing {node.get_node_names_and_namespaces()}"

found = {cname: False for cname in cnames} # Define 'found' as a dictionary
start = time.time()
Expand Down

0 comments on commit b40fdcf

Please sign in to comment.