Skip to content

Commit

Permalink
correct more inconsistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwashington committed Jun 17, 2024
1 parent 3dd23e3 commit 7136cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def execute_process(command: str, to_null: bool):
stdout=stdout,
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as err:
raise RuntimeError(f'Error executing process. {err}') from err
raise RuntimeError(f"Error executing process. {err}") from err

def assert_successful_provisioning(defaults):
try:
precheck_deployment_requirements(defaults)
# pylint: disable=broad-exception-caught
except Exception as e:
# Assert False with informative error message
assert False, f'Unexpected error with provisioning: {e}'
assert False, f"Unexpected error with provisioning: {e}"
else:
# No exception occurred, assert True
assert True
Expand Down

0 comments on commit 7136cfc

Please sign in to comment.